Styling scroll bars with CSS [duplicate] - css

This question already has answers here:
CSS customized scroll bar in div
(20 answers)
Closed 7 years ago.
I tried searching online but I didn't find any good sources on this. Is there a way to style scroll bars with pure CSS so that it is compatible with a maximum number of browsers?

You can style scrollbars in Internet Explorer and Webkit only.
Note that these are not standard properties.
However, you can achieve this with JavaScript. One project that does this is jScrollPane.

Adding my 2 pence a little late, but if you really want to style them I would suggest trying http://jscrollpane.kelvinluck.com/. It's not a pure CSS solution like you are looking for but is a solution of sorts.

Related

Make a container transparent only when another div is over [duplicate]

This question already has answers here:
How to make a child div transparent?
(2 answers)
Closed 5 years ago.
So as exposed in the title, i'd like to make a part of a container transparent, but only where there is another div, I know I can't tell it clearly, then I made an example :
I don't know if it is possible doing this, using ONLY CSS, I can't use JQuery, not even Javascript.
Thank you in advance for your answers :)
No, this can't be done with CSS alone. However, as CBroe has said, you could apply the same background image to the second/inner to give the illusion that it's transparent.

boot strap grid css horizontal stacking [duplicate]

This question already has answers here:
How to Create Grid/Tile View? [duplicate]
(8 answers)
Closed 6 years ago.
I'm trying to solve a css problem with bootstrap 'possibly' if we can stack rows with different height like this picture bellow (column has equal width but different height from one another)
horizontal stacking
This is a concept of Masonry. I will suggest to follow the links below. Following this link, you will be able to understand the concept of Masonry.
http://masonry.desandro.com/
Below link will help you to understand the CSS and HTML required for making this Masonry layout.
http://masonry.desandro.com/layout.html
Also I am providing the link where you can edit this Masonry Layout. Hope this help you to solve your problem.
http://codepen.io/desandro/pen/JFpeg

using a div to blur an image behind it? [duplicate]

This question already has answers here:
How to use CSS (and JavaScript?) to create a blurred, "frosted" background?
(10 answers)
Closed 9 years ago.
Is it possible to code a div to enable it to blur whatever image is under it?
something like this:
Could this be done somehow with -webkit maybe?
Not with CSS on its own, but you can pull a similar effect off with Canvas and the StackBlurforCanvas library. See this
UPDATE: Looks like backdrop-filter was recently introduced to Webkit nightly, so eventually we'll be able to do this with CSS only. Yay!
Unfortunately this can't be done purely using CSS. Although webkit-filter supports blur, it doesn't support blurring anything other than the element that it applies to.
There is a more hacky way to do this, described here - http://css-tricks.com/blurry-background-effect/

Generalizing INPUT fields cross-browser [duplicate]

This question already has answers here:
How to align checkboxes and their labels consistently cross-browsers
(40 answers)
Closed 9 years ago.
Is there a CSS (non-javascript) way to make input fields (text/textarea/password) shown the same way cross-browsers (from IE7+ and all other common browsers (safari, chrome, firefox)) ?
There is some great code you should check out. It has a polyfill for older browsers, but it will make all of your form fields look pretty close. You can use just the CSS portion and it is still pretty awesome. It's called Formalize. It is not identical in every browser but it's pretty close.
If you are worried about pixel perfect similarity you will have to use a javascript like Select2 or Chosen since select fields are usually the elements that vary the most between browsers. You could also take a look at Twitter Bootstrap. They already have a lot of work done for you. Good luck!

Cross-Browser CSS solution for fixed, stretched to height background image [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Stretch and Scale CSS Background
I am looking for a way to have a background with the following properties:
- be fixed
- stretch proportionally to window height
- cross-browser or at least solutions for all browsers.. (IE especially)
I have searched everywhere but I can't seem to find something to truly work..
Thank you.
reviving the horse? :D anyways, this can't be done by plain CSS.. or can it?
there's what they call background-size:cover in CSS3 (CSS3 is synonymous to "drop that old browser"). otherwise, i'd go for the JS solutions for the sake of older browsers.
here's a demo in w3schools (not a good reference but at least it has a demo)
Is this what you want
http://css-tricks.com/perfect-full-page-background-image/
http://ringvemedia.com/
http://www.fiskebussen.se/

Resources