Search Results

2
votes

CSS Floating w/ Overlap

z-index property will not apply to statically positioned elements. In order to use z-index the CSS must also include any position value other than static (ie relative, absolute, fixed). …
0
votes

removing space between vertical divs

You can give the image display: block. Alternatively you can follow the image with <br/> or wrap it in a div (make sure there's no white-space). In this case I would …
0
votes

Forms - Can they be done without tables?

I have used this in the past fairly effectively: HTML: <fieldset> <p> <label for="myTextBox">Name</label> <span class=" …
2
votes

Block-level elements within display: inline-block

Well display: inline-block can be a bit tricky to get cross-browser. It will require at minimum, a few hacks and, for Firefox 2, potentially an extra element. CSS …
3
votes

HTML Strict & CSS: How do I close the gap?

Add display: block to your <img> either in css or on the style attribute. Edit Guffa beat me to the above. You can also wrap the <img> with …
1
vote

Avoid an Element from being cut off when they are inside a “overflow: hidden” element

Unfortunately no... I don't think there's a way to circumvent overflow: hidden with absolute position. You may experiment with position: fixed, but you won't be positioning under quite the same con …
0
votes

Table layout equivalent using DIVs

Well this is what I came up with. You may have to play with the widths to adjust for browser rounding errors/ white-space corrections but overall should work. Also IE may need some judicious us …
1
vote

How to prevent 3px extra bottom padding on list items in IE7

Try the following: <style type="text/css"> div.test { width: 160px; font: 8pt arial,helvetica,sans-serif; border: 1px solid #999; overflow:hidden; } div.test ul { marg …
1
vote

How to have an image top left and bottom right.

You can move the trailing close quote image to a place some where inside your <p> (you'll have to play with the positioning of it however; safe bet is about 10-15 words away from …