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).

learn more… | top users | synonyms

119
votes
5answers
10k views

Convert RGB-->RGBA

I have a hex color, e.g. #F4F8FB (or rgb(244, 248, 251)) that I want converted into an as-transparent-as-possible rgba color (when displayed over white). Make sense? I'm looking for an algorithm, or ...
72
votes
5answers
28k views

Is it possible to combine a background image and CSS3 gradients?

I want to use CSS3 gradients for my background color and then apply a background-image to apply some sort of light transparent texture. Is this possible?
69
votes
12answers
4k views

Would you recommend starting from HTML5 & CSS3 for beginners?

I am a middle school student trying to dive into the world of web designing and developing. I have been interested in (using) the web since I was little, but now I want to be in the "creating" side. ...
58
votes
8answers
14k views

IE9 Border-radius and Background Gradient Bleeding

I've seen a lot of info about being able to use rounded corners in ie9 using the CSS3 standard definition of border-radius. Kudos to ie9 for joining the party :) but lets not get to excited. What ...
56
votes
13answers
34k views

CSS3's border-radius property and border-collapse:collapse don't mix. How can I use border-radius to create a collapsed table with rounded corners?

Edit - Original Title: Is there an alternative way to achieve border-collapse:collapse in CSS (in order to have a collapsed, rounded corner table)? Since it turns out that simply getting the table's ...
43
votes
8answers
26k views

CSS3 gradient background set on body doesn't stretch but instead repeats?

ok say the content inside the <body> totals 300px high. If I set the background of my <body> using -webkit-gradient or -moz-linear-gradient Then I maximize my window (or just make it ...
36
votes
5answers
1k views

How can I create a “tooltip tail” using pure CSS?

I just came across a neat CSS trick. Check out the fiddle... http://jsfiddle.net/duZAx/1/ This creates a little arrow/triangle-like effect, a "tooltip tail". This blows my mind! I'm really ...
36
votes
6answers
24k views

Why does IE9 switch to compatibility mode on my website?

I have just installed IE9 beta and on a specific site I created (HTML5) IE9 jumps to compatibility mode unless I manually tell it not to. I have tried removing several parts of the website but no ...
34
votes
5answers
25k views

Creating a CSS3 box-shadow on all sides but one

I've got a tabbed navigation bar where I'd like the open tab to have a shadow to set it apart from the other tabs. I'd also like the whole tab section to have a single shadow (see bottom horizontal ...
33
votes
4answers
966 views

How to find the background-position / background-image etc for multiple backgrounds using jQuery in Safari

Maybe I'm missing something here. I'm trying to get the current background info for an element (div) with multiple backgrounds, set using the longhand background-repeat, background-position and ...
33
votes
9answers
12k views

Optimize website for touch devices

On a touch device like iPhone/iPad/Android it can be difficult to hit a small button with your finger. There is no cross-browser way to detect touch devices with CSS media queries that I know of. So I ...
33
votes
11answers
764 views

Is there a way to break long numbers (“$100000000”) into more readable triads (“$100 000 000”) with CSS?

I have a page with lots of big number values. Millions and billions of dollars going everywhere. And it is hard to read these numbers, so my client asks me to break them into more readable chunks of ...
30
votes
11answers
32k views

Emulating CSS3 border-radius and box-shadow in IE7/8

I'm working on HTML for a small web application; the design calls for a content area with rounded corners and a drop shadow. I've been able to produce this with CSS3, and it works flawlessly on ...
30
votes
2answers
9k views

How to define bold, italic using @font-face

I'm looking at the MDC page for the @font-face CSS rule, but I don't get one thing. I have separate files for bold, italic and bold + italic, how can I embed all three files in one @font-face rule? ...
30
votes
5answers
2k views

Why doesn't the percentage width child in absolutely positioned parent work in IE 7?

I have an absolutely positioned div containing several children, one of which is a relatively positioned div. When I use a percentage-based width on the child div, it collapses to 0 width on IE7, but ...
29
votes
2answers
15k views

Hiding textarea resize handle in Safari

I'm using textarea components in my application, and I control their height dynamically. As the user types, the height is increased whenever there is enough text. This works fine on IE, Firefox, and ...
28
votes
2answers
367 views

CSS icon iOS/OSX style

Is is possible to create this effect in CSS3? I am able to have the rounded corner, the border the background but not the curly effect. Is it possible to have the curly effect in css3? Thanks
28
votes
1answer
395 views

What does *|* this mean in css

I just saw this: *|*:link with firebug, it's some default styling which firefox appends, but what does *|* mean?
23
votes
3answers
13k views

Box-shadow only on one side

Many times i need to create a shadow of some block element but only (for example) on its right side. The way I do it is to wrap the inner element with box-shadow into an outer one with padding-right ...
23
votes
10answers
19k views

Gradients in Internet Explorer 9

Does anyone know the vendor prefix for gradients within IE9 or are we still supposed to still be using their proprietry filters? What I've got for the other browsers is: background-image: ...
21
votes
3answers
16k views

CSS3 Border Opacity?

Is there a straight forward way to make the border of an element semi-transparent with something like say border-opacity:0.7; ? If not anyone have an idea how i could do so without using images?
21
votes
9answers
12k views

Box-shadow and border-radius bug in Chrome

I've been experimenting with CSS3 and found something strange. Heres's the part of DIV style: border:#446429 solid 1px; border-radius:15px; -moz-border-radius:15px; -webkit-border-radius:15px; ...
20
votes
1answer
103 views
+100

CSS attribute selector does not work a href

i need to use attribute selector in css to change link on different color and image. but it does not work i have html <a href="/manual.pdf">A PDF File</a> and css a { display: ...
20
votes
6answers
35k views

CSS3 Gradient Borders

I'm trying to apply a gradient to a border, I thought it was as simple as doing this: border-color: -moz-linear-gradient(top, #555555, #111111); This does not work, does anyone know what the ...
19
votes
6answers
840 views

What is the least horrible way to center an element with CSS?

I have html that looks like this: <!DOCTYPE html> <head> <meta charset="utf-8"> <!--[if lte IE 8]> <script ...
18
votes
2answers
434 views

overflow:hidden works in firefox but not in chrome in my file. Why?

I have been trying to play a bit with the CSS3 and build a netscape logo purely out of CSS3 for training. here is the link: http://alonbt.com/css3/netscape/ The thing is: in firefox all looks well ...
18
votes
6answers
10k views

CSS 3 Transitions on the display: property

I'm currently designing a kind of css 'mega dropdown' menu - basically a normall css-only dropdown menu but one which contains different types of content. An example can be found at ...
17
votes
3answers
4k views

How to target iPhone 3GS AND iPhone 4 in one @media query

I am trying to implement alternate layouts for both the iPad/iPhone and older iPhones as well. I have established that the best method is to use @media queries from the CSS3 spec, As such these are ...
16
votes
1answer
82 views

@font-face HattoriHanzoLight does not work

i downloaded the font from this site: http://www.fontsquirrel.com/fonts/Hattori-Hanzo and here's my code: <style type="text/css"> @font-face { font-family: 'HattoriHanzoLight'; ...
16
votes
4answers
784 views

CSS create padding before line-break

Is it possible to add padding before line-break? As in, making from this to this . Current CSS code: span.highlight { background: #0058be; color: #FFF; padding: 2px 5px; }
16
votes
2answers
2k views

IE9: Why setting “-ms-transform” works from css, but not with jquery.css()

This works div{ -ms-transform: rotate(30deg); } And following does not $("div").css("-ms-transform","rotate(30deg)"); Any ideas why, and how to fix it? Same thing works good on all other ...
16
votes
2answers
5k views

Is @font-face usable now?

I have to use a fancy font in a project but I'd really like to avoid sifr and other ugly alternatives so I'm looking at @font-face. However, I'm really confused with several blog/sites offering ...
16
votes
4answers
6k views

Is there a way to update VS' CSS validation to 3.0?

I'm getting warnings about CSS3.0 properties like text-overflow. Is there a way to validate against 3.0? HTML5 and CSS3 support is coming to VS2010 in SP1. ...
15
votes
4answers
917 views

CSS to create curved corner between two elements?

My UI has an unordered list on the left. When a list item is selected, a div appears on the right of it. I'd like to have a curved outer corner where the <li> and the <div> meet. Some ...
15
votes
4answers
2k views

Performance of CSS Transitions vs. JS animation packages

I'm wondering - is there any difference in performance of using CSS Transitions vs. any of the various JS animation libraries? (scriptaculous, scripty2, jsAnim, MooTools, $fx, etc, etc). I've tried ...
14
votes
8answers
882 views

Horizontal swipe slider with jQuery and touch devices support?

I need to make a product slider like this ( see red area ) swipe slider with momentum. It should work on Desktop, iPad and Mobile browser. Do you know any jquery/jquery mobile plugin to achieve ...
14
votes
3answers
228 views

How to read a browser's unsupported CSS properties?

Quite by accident today, I discovered that in IE6, IE7 and IE8 it is possible to read unsupported CSS properties using the .css() method of jQuery: jQuery(node).css('transition'); // Returns the ...
14
votes
3answers
7k views

drop shadow only bottom css3

Is there a way to drop the shadow only on the bottom?. I have a menu with 2 images next to eachother. I don't want a right shadow because it overlaps the right image. I don't like to use images for ...
14
votes
4answers
8k views

Can you add noise to a CSS3 gradient?

Is it possible to add noise to a gradient in CSS? Here is my code for a radial gradient: body { color: #575757; font: 14px/21px Arial, Helvetica, sans-serif; background-color: #2f3b4b; ...
14
votes
4answers
832 views

Webkit and jQuery draggable jumping

As an experiment, I created a few div's and rotated them using CSS3. .items { position: absolute; cursor: pointer; background: #FFC400; -moz-box-shadow: 0px 0px ...
14
votes
4answers
955 views

Is there any good fallbacks for HTML5 and CSS3?

I'm looking for a good fallback for both HTML5 and CSS3 so I could use it and it would still look ok in other browsers.
13
votes
1answer
2k views

How does it snow on Google, by typing Let it snow [closed]

I know Google is actually promoting CSS3 and HTML5. I have seen that " do a barrell roll " will rotate the page. but I am not sure how it snows when you type Let it snow is this a CSS3 ...
13
votes
1answer
157 views

Can I disable the . in an <ol>?

I was delighted to learn that CSS lets me say list-style-type: cjk-ideographic and get my ordered lists numbered 一, 二, 三, 四. Unfortunately, it displays like "一." (2 characters: kanji/hanzi 1, then ...
13
votes
1answer
1k views

How to enable -webkit-animation/transition-property for :before and :after pseudo elements?

How to enable -webkit-animation for :before and :after pseudo elements? You can see in http://jsfiddle.net/4rnsx/ that it is not working for :before and :after. And here I am trying to enable this ...
13
votes
8answers
6k views

Is there a way to curve / arc text using CSS3 / Canvas

I'm trying to curve text this effect using CSS3, HTML Canvas, or even SVG (see image below for example)? Is this possible? If so, how can I achieve this effect? Update: To clarify: The text that will ...
13
votes
4answers
9k views

CSS selector for a checked radio button's label

Is it possible to apply a css(3) style to a label of a checked radio button? I have the following markup: <input type="radio" id="rad" name="radio"/> <label for="rad">A ...
12
votes
3answers
200 views

Pure CSS triangle with semi-transparent border. Possible?

Is it possible to draw an arrow that has semi-transparent border around it just using css? Heres a fiddle of my effort so far: http://jsfiddle.net/calebo/fBW4u/ CSS: .ui-overlay { ...
12
votes
3answers
324 views

How would you setup a CSS3 fallback in IE for this slanted DIV navigation?

Taken from a tutorial at: http://www.joecritchley.com/demos/slanted-nav/ I can't for the life of me get this to work in ANY version of IE. It only displays the navigation as a normal bulleted list, ...
12
votes
7answers
4k views

Issue with box-shadow on IE9

I'm having a frustrating issue with IE9 and it's box shadow implementation. I'm trying to simulate a floating modal box type thing. Here's a summary of the code I'm using which can duplicate the ...
12
votes
3answers
2k views

Is there any possibility to color the html5 progress tag?

Is there any possibility to color the progress tag in css? I tried it. But only width and height is working. I want to skin the color of progression(inner color which shows the percentage of ...

1 2 3 4 5 81