Home > Web Front-end > CSS Tutorial > basic terms in css

basic terms in css

无忌哥哥
Release: 2018-06-28 16:57:17
Original
1649 people have browsed it

1. Document flow: The default arrangement of page elements, arranged in sequence according to the order of the elements in the html document, from left to right, top to bottom;

2. Block element: occupies one line by default , arranged in the vertical direction, the width and height can be set, for example:

,

,

...;

3. Inline elements: Default is in one line Arranged in the horizontal direction, the width and height are determined by the content and cannot be set. For example, ...;

4. Replace elements: The content of the element is determined by the label. attribute to set, the label is actually a placeholder, for example

5. Non-replacement element: The element content contains the current In tags, such as

,

,

6. How to distinguish replacement and non-replacement elements?

6-1. Replacement elements are because of the element content It comes from external resources, so most of them only need one tag, because there are many single tags, but there are exceptions, such as:

Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template