css3

Can I create a Mac like menu in CSS 3?

See the menu where it says Home. Can this menu bar be replicated using CSS 3 only? ...

What is "content loaded as chrome?"

-moz-user-select Controls the appearance (only) of selection. This does not have any affect on actual selection operation. This doesn't have any effect on content loaded as chrome, except in textboxes. Source: link text I know what -moz-user-select does, but what is "content loaded as chrome?" Thanks ...

Shorten the comma separated CSS selectors

Hi all Maybe the title of this question is ambiguous, what I really mean is: #footer_list li a:link, #footer_list li a:visited { blah balh blah } Is there a shortcut for the two elements in CSS? so the CSS selectors can be shortened ...

nice css holder without image

any technique that can be used to place on image-holder while waiting for image to load. a typical way of doing is placing dummy image while waiting for real image to load. my image code like below <div id="realimage" style="background-image: real_image.jpg"/> any nice way to put as image holder without putting dummy image? using pu...

CSS3 box shadow + JQuery

When using a complex box shadow like: box-shadow: 0 2px 6px rgba(0,0,0,0.5), inset 0 1px rgba(255,255,255,0.3), inset 0 10px 20px rgba(255,255,255,0.25), inset 0 -15px 30px rgba(0,0,0,0.3) I am seeing considerable (unacceptable really) degradation of a jquery slideshow on the same page. All the transitions happen instantaneously. Is ...

pros and cons of .htc file

What are pros and cons of using a .htc file in CSS? ...

-webkit-box-shadow blur with QtWebKit?

Is there any way to achieve working blur for -webkit-box-shadow at the time? Reading through the comments of this bug report, i recognized that this is still an issue, although the bug report is marked as RESOLVED FIXED since version 528 (I am using version 534.6). ...

pure css hover show another element possible?

<a href=""> text here always show <div style="display:none;"> hide text here </div> </a> a:hover{ //when hover show 'hide text here' ; when not hover, hide it again } possible to use pure css to do this effect? ...

Listing ol li up to down in 2 column with CSS

Hi friends, I have ol li listing (in 1 ol tag), I need to list it as below. must be a way to do it in CSS. Appreciate helps! thanks a lot! ...

ImageFlow display default width height

Has anyone here worked with http://finnrudolph.de/ImageFlow/ it resizes my images, and I want them to look bigger, I've played with the settings...but....So can anyone help me? I want the imagesz to be displayed at 80-90% of the original width and height ...

css zebra stripe background without image

possible to use css to have zebra stripe as background without using image? ...

which technique show image in css is faster?

technique 1 .realimage {background: url('data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAABlBMVEUAAAD/ //+l2Z/dAAAAM0lEQVR4nGP4/5/h/1+G/58ZDrAz3D/McH8yw83NDDeNGe4U g9C9zwz3gVLMDA/A6P9/AFGGFyjOXZtQAAAAAElFTkSuQmCC')} technique 2 .realimage {background: url('http://..test.jpg); Questions If I need to show mult...

Any tutorials on building an iAd?

I am looking to build an iAd for a client. It shouldn't be to hard, but I would like to see a decent sample. I was looking through the iOS library but didn't find anything. Can anyone point me to a tutorial? ...

less.js, lessframework & CSS grids ala Blueprint or 960.gs

Ok, so Less.js has come along, and it seems that my dreams of creating a CSS framework (especially a 'grid' system), with an 'abstracted' CSS language might be about to come true. That is, 960 and Blueprint are great and all... but it so irked me to put style information in HTML markup, such as: class="article grid_4 pull_2" or whate...

Which web technology[ies] should I learn?

Hey guys, I have never done any web development but am very interested in learning some web technologies. I believe I have a fairly solid understanding about programming, so I think picking up different languages/technologies shouldn't be too difficult. I am a junior in college, majoring in CS, and would like to work on a couple of smal...

Vertical Alignment of inner elements

I've two elements in <td> a <div> and some text. I would like to align <div> to top and text to middle of <td> How can I do that? Edit: The should be vertically top aligned and not text inside div. ...

What's new for developers in Mobile Safari iOS 4.2

Does anyone know what the changes are to Safari in the iPad OS update coming in November, from a web application development standpoint? Is there any expanded support for hardware acceleration, any changes to JavaScript, etc, etc? ...

Google's doodle and HTML5, could it be done with XHTML 1?

I've read on websites and heard on podcasts that the Google doodle is was bestowed upon the masses through the miracle of HTML5. I looking at the code and validated the source of the Google homepage page via W3C and received 35 errors. While HTML5 is certainly fine and dandy it seems the real work is being done by CSS3 and JavaScript. ...

ie6 ul.li hover

i know that ie6 can only do hover on a href element. but i do not need a href element. i have ul.li element like below ul.testclass li { display: inline-block; } ul.testclass li:hover { background-color: #ffffff; } it work on all browsers except ie6. any workaround to make it work in ie6? ...

Is this possible with CSS 3

I have two DIVs one inside another. <div class="outside"> <div class="inside"></div> </div> The outside div has padding of 20px. The inside div has a lot of content and is scrollable. Is it possible to use CSS3's gradient(alpha?) feature to make the top and bottom of the inside div fade into the outside div when scrolling? or do I ha...