One of the biggest annoyances with CSS is the inability to apply more than one background image to a box. I’m currently working on a site that is in particular need of this. The only way to tackle it, at the moment, is to throw an ass-load of span or div tags in the mix …
Category Archives: CSS
Flash: ASfunction Link Rollover Effect
External CSS External css as it applies to dynamic text does have limitations Some of those limitations include: javascript actions such as On rollover events in js. Borders divs and tables text is always set to wrap which can cause formatting issues when dealing with images linked to in the content.
Advanced CSS Menu
Last tutorial, I showed you how to design a watercolor effect menu in Photoshop. This tutorial I will show you how to slice up the menu design (step by step) and put them together with CSS. Most of you probably know how to code a horizontal or vertical CSS list menu. Now let’s take it to …
CSS tips , bg iamge position, DIV hover
Css bg image position stylesheet .seabox { background-image: url(images/seascape.gif); background-repeat: no-repeat; background-position: 0 0; /* remark: nothing between 0 and 0 */ } html <div>…</div> http://home.tiscali.nl/developerscorner/port-hole/porthole.htm CSS DIV HOVER .home_tab { (I’d call this #nav a) width: 75px; height: 26px; background: url(images/home.jpg) top left no-repeat; margin-left: 265px; } .home_tab:focus, .home_tab:hover, .home_tab:active { (I’d call this …
Absolute CSS Boxes
Quite some time ago, I had an argument with a friend who is a big fan of Microsoft products. While I’m no Xbox hater, I am not very fond of some of their more shoddy products such as Internet Explorer. He was justifying the shortcomings of IE6, saying that absolute positioning is rarely used in …
Fixed positioning CSS
Fixed positioning This post will hopefully be updated when I have done a little more (like explaining stuff and publishing combinations of three, maybe four columns), for now: Fixed header Fixed header and left-sidebar Fixed header and right-sidebar Fixed header and footer Fixed left-sidebar Fixed left-sidebar and header Fixed left-sidebar and right-sidebar Fixed left-sidebar and …