Prev: Premature end of JPEG fie
Next: JAVA Error on SAVE
From: RobGT on 19 Jan 2007 12:09 You could do with learning a little shorthand in your CSS. e.g. This: border-bottom-style: solid; border-bottom-width: 3px; border-bottom-color: #FFFFFF; Becomes: border-bottom: 3px solid #FFF; This: padding-top: 0px; padding-right: 0px; padding-bottom: 2px; padding-left: 0px; Becomes: padding: 0 0 2px 0; Cheers, Rob http://robgt.com/ [Tutorials and Extensions] Skype stuff: http://robgt.com/skype SatNav stuff: http://robgt.com/satnav
From: bamgraphic on 19 Jan 2007 15:41 Isn't that recommended clearfix that same as what I had? What do you mean, "try commenting so that it is not expressed?" Also, what do you mean that it isn't going to be well supported? I do have a conditional ie css, but I guess I don't realize the problems that I am going to incur. What kind of problems am I going to have?
From: Murray *ACE* on 19 Jan 2007 16:40
> Isn't that recommended clearfix that same as what I had? Yes. It's not ready for prime time. It relies on support for the :after pseudo-element, and for support for the content style. I do not think it's safe to use as a way to clear floats. I use this instead - hr { font-size:0; line-height:0.0;height:0; visibility:hidden; clear:both; } and then just insert an <hr> where I want to clear. Anyhow - I suggested that you comment out that rule, and see if the error that you have been getting goes away when you do so. -- Murray --- ICQ 71997575 Adobe Community Expert (If you *MUST* email me, don't LAUGH when you do so!) ================== http://www.dreamweavermx-templates.com - Template Triage! http://www.projectseven.com/go - DW FAQs, Tutorials & Resources http://www.dwfaq.com - DW FAQs, Tutorials & Resources http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes ================== "bamgraphic" <webforumsuser(a)macromedia.com> wrote in message news:eoraed$2i6$1(a)forums.macromedia.com... What do you mean, > "try commenting so that it is not expressed?" > Also, what do you mean that it isn't going to be well supported? I do > have a > conditional ie css, but I guess I don't realize the problems that I am > going to > incur. What kind of problems am I going to have? > |