How would i create the below using pure CSS (no images, no tables, no javascript)?

|
|
|||||
|
|
HTML:
and the CSS:
Use CSS3 for border radius
The above code will work in firefox, safari, chrome, opera (10.5 +) etc Now with bonus demo |
|||||||||||
|
|
HTML:
CSS:
Demo. |
||||
|
|
|
What you want is not possible unless you dont really care about support in internet explorer. |
|||
|
|
|
As Fabian said, you cannot do exactly what you want within Internet Explorer. If you still decide you want to create that without any images/javascript, I strongly suggest that you use some conditional statements - a surprising number of people still use Internet Explorer and I'm a little worried how that sort of solution would render in IE! Best of luck - this was a really great question! |
|||
|
|
|
Using wiifm's JS Fiddle demo, I solved an issue when building a calendar and wanted to make the events on the calendar more colorful and dynamic - I wanted to have a DIV as the containing element, along with the H2 for the time of the event, and the internal P tag holding the event text - I had a set of pre-determined colors for the users to select from, and wanted the background of the H2 to have the same color as the border of the containing element, based on which secondary class was assigned to the element. Normally, you'd have to define a background color for the H2, but with this trick, it uses the containing element's background color as a faux background, so it saves having to create a class just for that, and allows the resulting code to be much cleaner. Here's a forked JS Fiddle link of what I did. It also works in IE8! Just wanted to share since this helped me get to my solution. |
|||
|
|