CSS3 is an abbreviation of Cascading Style Sheets level 3. CSS is a language for describing the visual presentation of documents described by a markup language. The markup language most commonly used in conjunction with CSS is HTML (Hyper Text Markup Language).
Questions tagged [css3]
55 questions
3
votes
1 answer
Is is still necessary to use vendor prefixes on css styles?
I used to write a number of CSS styles with standard and with vendor prefixes.
Example:
.three-col {
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
-webkit-column-gap: 1.5rem;
-moz-column-gap:…
Michael Moriarty
- 633
- 4
- 16
1
vote
1 answer
Why was :contains not included in the css3 spec?
There was apparently a :contains selector proposed at some point, but was dropped. I've searched all over, but I can't seem to find anything which gives any more info than this.
Why was this selector not included in the css3 spec?
gandalf3
- 113
- 4
0
votes
4 answers
CSS3 Background Gradient Fixed
I'd like to make my CSS3 background gradient fixed. Any suggestions?
corysimmons
- 103
- 1
- 3
0
votes
1 answer
suggested ways of handling font-face and minification
I have a css file with a font-face section in it. Are there any known issues around using minification tools from google/yahoo when applying them on a css file with a font-face section. If so, what are some of the workarounds that could be…
ali haider
- 131
- 4