On Aug 1, 2006, at 2:36 PM, Joe Chellman wrote:
On Aug 1, 2006, at 1:17 PM, Derek Redmond wrote:

Do I have to update my whole style of HTML, or is there an easier fix?

<br style="clear: both" />

This is a more modern way of doing it. Or, even better, set up some CSS like this:

.clearing {
    clear: both;
}

and then do this:

<br class="clearing" />

Then you can change the behavior of your clearing class once and have it apply everywhere, should you need to do such a thing.

However, you also broke the behaviour in non-CSS aware browsers.

Try the following, using CSS attribute selectors:

        br[clear=all]   { float: none; clear: both  }
        br[clear=left]  { float: none; clear: left  }
        br[clear=right] { float: none; clear: right }


But the others are right, and the web-authoring list might be of
interest:

        http://barebones.com/support/lists/web_author.shtml

However, there's no reason to be snotty about what is or isn't
on-topic, without first checking the charter:

        http://barebones.com/support/lists/bbedit_talk.shtml

        Charter: What's Acceptable, What's Not

        This discussion list is intended for any current or prospective
        users of our world-class HTML and text editor, BBEdit. Topics
        might include sharing specific uses and tips for HTML document
        or Web site creation, use of BBEdit as a coding editor, sharing
        of AppleScripts or grep patterns, asking questions or providing
        feedback about potential product features, development of
        plug-ins, etc.


-----
Joe Hourcle

--
------------------------------------------------------------------
Have a feature request? Not sure the software's working correctly?
If so, please send mail to <[EMAIL PROTECTED]>, not to the list.
List FAQ: <http://www.barebones.com/support/lists/bbedit_talk.shtml>
List archives: <http://www.listsearch.com/BBEditTalk.lasso>
To unsubscribe, send mail to:  <[EMAIL PROTECTED]>

Reply via email to