Thomas Hall wrote:
Here is a page, http://design.tmhdesign.com/dolphin/tom.asp

Look at what is happening with this div -
<div style="width:390px ! important;margin:30px 0 20px
10px;padding:0;clear:left;position:relative;float:left;border-right:2px
dotted #000066;height:200px;">

I just seems to jump for reasons unbeknownst to me. Don't spend too much
time on it, but if it is obvious to why this is happening, please let me
know. Thanks!


If this is a literal copy of your code the space between ! and important is the prolbem. All after that error is being ignored. Try the following instead.

<div style="width:390px !important; margin:30px 0 20px 10px; padding:0; clear:left; position:relative; float:left; border-right:2px dotted #000066; height:200px;">

Learn to validate HTML anc CSS as a first resort. It's free and a LOT FASTER than waiting for an answer from the list.

HTML: http://validator.w3.org/
CSS: http://jigsaw.w3.org/css-validator/

--
Bob Easton
Accessibility Matters: http://access-matters.com

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to