css3

CSS - Overlapping divs

I have no code to start with. I want to add 2 divs overlapping on each other and then use the new CSS3 Rotate function. The effect I want to create is shown on this page Requirements I don't want to use images I don't mind using CSS3 It should be easy to align the whole thing in the center (which makes it harder to use position: abso...

dximagetransform.matrix, absolutely position child elements not rotating in IE 8 standards mode

I've looked all over for more information on this, and would like to know why it happens. Here's the code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <html> <head> </head> <body> <div style="position:absolute; top:200px; left:200px; height:200px;...

Building CSS3 Simulated Lightsource on Background

Is there a way to take a DIV that has a background image on it, then apply a CSS3 gradient on it to simulate a lightsource? The reason I ask was because I was thinking of making the BODY tag on a page use a repeating background pattern, apply the CSS3 gradient lightsource on it, and then stick a white DIV on top of that where all the pa...

Css, Content not staying inside border

I have the height of this div set to 100% but content keep overflowing out of it. Here is the page: http://cowgirlsbaking.com/membership CSS: #content { margin-left: auto; margin-right: auto; background-color: #FCF6E9; width:868px; height:100%; min-height: 650px; -moz-border-radius: 15px; -webkit-border-radius: 15px; border...

How do i select the 1st and then every 4th row in a html-table with nth-child()-selector?

Ok, math isn't my strong side, I admit it. All I want to do is to select the first, 5th, 9th, 13th, 17th etc row in a html-table. Can anybody with better math-skills point me in the right directionor perhaps supply a "nth-child-for-dummies" guide? I tried nth-child(1n+4) (which selects the 4th row and everyone after), and i also tried...

css3 animation only happening once

I'm trying to make a box rotate through javascript/css3 rotate every time I click on it. It works, but only the first time I click on it. Each time after, I get the alert which means it's not a javascript error - but no animation. Here is my simple page - <script> function rotate( box ) { alert('start'); box.style.webkitTra...

How can you make a gradient background without images?

Like this. in general i will make 1 px wide image of this then will repeat-x. but is it possible to make same type of background with CSS3 , if yes then tell me how tp make same of this. with all browser compatibility IE 8, 7, 6 , FF , Chrome, Safari, iphone. ...

is there any solution to get support of CSS Gradient in firefox 3.5 and lower?

is there any solution to get support of CSS Gradient in firefox 3.5 and lower? http://hacks.mozilla.org/2009/11/building-beautiful-buttons-with-css-gradients/ ...

One SVG file, many SVG gradients inside

Hello, I’m making a set of buttons which use dynamic gradients. I’ve taken care of Firefox 3.6+ and WebKit by using their proprietary CSS extensions and all I need to do is support Opera, iOS and IE9 by using background-image: url("gradient.svg"). This is relatively easy, I made an SVG file, linked it and got it working. However, I’m m...

Use :not() pseudo selector in IE7/IE8

Hello, is there any way I can get the :not() pseudo selector to work in Internet Explorer 7/8? Is there any javascript that can do the same thing as the CSS3 :not()? ...

CSS3 Fade Effect

a { float: left; width: 32px; height: 32px; text-align: left; text-indent:-9999px; background: url('../img/button.png') no-repeat 0 0; -webkit-transition: background 300ms ease-in 2s; /* property duration timing-function delay */ -moz-transition: background 300ms ease-in 2s; -o-transition: background ...

CSS @font-face not working in ie

I have the following css that works within Firefox but not i.e.? Obviously the fonts are within the directory... Any suggestions? @font-face { font-family: "Futura"; src: url("../fonts/Futura_Medium_BT.eot"); /* IE */ src: local("Futura"), url( "../fonts/Futura_Medium_BT.ttf" ) format("truetype"); /* non-I...

Can't stop animation at end of one cycle

I'm making a CSS animation at the minute, and in it I'm moving stuff and want it to stay at the end position until the user moves their mouse away. body { background: url('osx.jpg'); padding: 0; margin: 0; line-height: 60px; } @-webkit-keyframes item1 { 0% { bottom: -120px; left: 0px; } 10% { bottom: -40px; left...

Smart approach to CSS3

Hi, do You have any elegant approach to benefit from CSS3 features, like border radius or gradients? I am looking for a solution that would avoid browser-specific CSS properties and browser-specific stylesheet files. I find them both hard to maintain and too verbose. It could be a Javascript library that would take care of cross-brows...

How to add horizontal padding to every line in one multi-line wrapped sentence?

This is my code: <div><p><span>... highlighted text ...</span></p><p>Chapter info</p></div> This is what it currently looks like: http://i48.tinypic.com/2dqvo1i.png Is there a way to add padding to the sides of the highlighted text? Regular padding on the SPAN doesn't work, because it only takes into account the the beginning and en...

:last-child issue when adding a footer after a section

Right, so this is strange. This code works as expected: HTML: <section> Section #1 </section> <section> Section #2 </section> <section> Section #3 </section> CSS: section{ margin-right: 30px; } section:last-child{ margin-right: 0; } The first two sections get a right margin of 30px, while the third section doesn...

Sub Pixel CSS positioning

If I set the CSS position attributes of an image element to floating points via javascript, Firefox renders it nicely, but other browsers do not. Can I get sub pixel positioning to work with other browsers? I like to seamlessly zoom in on an image, without jittering due to my values getting rounded off. For example, it seems like 2.217px...

What is faster, rendering gradient through css or load an image directly?

The reason for my question is because I like the new CSS3 styling techniques, but i'm not quite sure if it's worth it! (sub-question; anybody that knows if it's possible to use jQuery to apply a vignetting effect to a page?) Thanks guys ...

Remove Style if CSS3 Support

Is it possible to remove a style in the case that browser specific CSS 3 items (drop shadows, rounded corners, etc.)? For example: .fancy { /* only display if no drop shadow support */ border: thin solid #888; box-shadow: 0px 1px 4px #888; -webkit-box-shadow: 0px 1px 4px #888; -moz-box-shadow: 0px 1px 4px #888; } ...

CSS zoom property

Sitepoint reference says Internet Explorer for Windows versions 5.5 and above support the non-standard property zoom, which sets the magnification scale of an element. There’s no CSS3 equivalent to this property (as yet). How can I achieve this zoom effect in standard browsers? Any jQury plugins available? ...