BrainJar.com: CSS Positioning
Popularity Report
![]() |
|||
![]() |
|||
![]() |
|||
![]() |
|||
![]() |
|||
![]() |
URL Tag Cloud
Groups (1)
-
CSS Evangelist
221 members,394 bookmarks
a collection of resources of all things CSS- Include how-tos, articles, resources, tools, etc...
Bookmark History
Saved by 65 people (29 private), first by anonymouse user on 2006-03-02
- Aquadragon1984 on 2008-10-02 - Tags no_tag
- Co-optation on 2008-09-02 - Tags WEB DESIGN , CSS
- Johnmackin on 2008-05-22 - Tags css , boxmodel , positioning
- Aengland on 2008-04-01 - Tags CSS , HTML , Work
- Bkbelton on 2008-03-29 - Tags CSS , Design , Web
Public Sticky notes
To use CSS for layout effectively, it helps to know how it's used to
position page content. This article gives an overview of the methods and rules
that govern visual rendering in the CSS2 specification. It also points out some
things to watch out for.
Highlighted by joel
Block boxes act as a containing block for any boxes within them. For example, in this code:
<div>
This is the first sentence.
<p>This is the second sentence.</p>
</div>
the DIV element establishes a containing block for both the first string of text and the P element. The P element in turn creates a containing block for the second text string.
Highlighted by joel
Margins can even have negative values
Highlighted by superluke
the content edge of its most recent, block-level ancestor
Highlighted by gpendergraft


Public Comment