Summarize the four common positioning attributes in css (left right top bottom)

零下一度
Release: 2017-06-02 10:48:56
Original
31406 people have browsed it

DIV CSS left right top bottom positioning These four CSS attribute styles are used to position the object box, and the position attribute value must be defined as absolute or relative.

Left The distance value between the left side of the current element and the left side of the parent element (which is the original default position).

Right The distance value between the right side of the current element and the right side of the parent element.

Top The distance between the top of the current object and the top of the original position.

Bottom The distance between the bottom of the current object and the original position.

1. The left attribute in CSS

1. Detailed introduction to the left attribute in CSS

Definition and Usage

The left attribute specifies the left edge of an element. This property defines the offset between the left margin edge of the positioned element and the left edge of its containing block.

Note: If the value of the "position" attribute is "static", then setting the "left" attribute will have no effect.

1490577393784953 (1).png

2. Detailed introduction to the example of CSS three-column layout (picture)

Through float left and relative width Achieve

Summarize the four common positioning attributes in css (left right top bottom)

Absolute positioning, separate it from the document flow through absolute positioning, and you can adaptively define the three-column width

Summarize the four common positioning attributes in css (left right top bottom)

Use self-floating, float left and float right

Summarize the four common positioning attributes in css (left right top bottom)

3. The difference between offsetLeft and style.left in div

clientX event property returns the horizontal coordinate of the mouse pointer to the browser page (or client area) when the event is triggered.
The client area refers to the current window.
If the position of the parent p is defined as relative and the position of the child p is defined as absolute, then the value of style.left of the child p is relative to the value of the parent p, which is the same as offsetLeft

4 . The difference between the float:left of div and the span tag

is that p? is a block-level element, and the elements it surrounds will automatically wrap. Span is just an inline element, and there will be no line breaks before and after it. There is no structural meaning, it is purely for applying styles, and can be used when other inline elements are not suitable. It should be noted that the tag can be included in the tag and become its child element, but the reverse is not true

2. The right attribute in CSS

1. CSS border-right-style property sets the right border style of the element

CSS border-right-style property sets the right border style of the element

The style of the border refers to the line attribute of the border, which refers to whether the border uses a solid line effect, a short line effect, or other line effects.

The border-right-style attribute sets the style of the right border of an element.

2. margin-right doesn’t work? _html/css_WEB-ITnose

The browser renders elements from left to right by default. It is useless to set margin-right if the width of the child container can be accommodated without exceeding the width of the parent container.

3. Summary of how to use css margin-left and margin-right

Generally in css styles, use the margin attribute to set the outer margin. If you only need margins on one side, you can use the one-sided margin property to set a value for the margin on one side of the element. Use the margin-left property to set the left margin of an element. Use the margin-right attribute to set the right margin of an element. Their default value is 0. In specific actual use, a specific unit value can be set, or it can be set in the form of a percentage. This article will summarize the usage of margin-left and margin-right.

3. Bottom attribute in CSS

1. Introduction to five ways to use CSS to implement Footer at the bottom

Sticky footer is to keep the footer part of the web page always at the bottom of the browser window.

When the content of the web page is long enough to exceed the visual height of the browser, the footer will be pushed to the bottom of the web page along with the content; but if the content of the web page is not long enough, the bottom footer will remain in the browser bottom of window.

Summarize the four common positioning attributes in css (left right top bottom)

2. css border-bottom (specify the style, width and color of the bottom border)

border-bottom attribute is used Specify the style, width and color of the bottom line. The values ​​are separated by half-width spaces in no order.

Regarding the value of the style of the border-bottom attribute, please refer to the style of the edge for details. For the value of the width of the edge, please refer to the width of the edge

3. The problem of negative numbers being hidden when setting margin-bottom under IE6_html/css_WEB-ITnose

But In IE6, the bottom border of the current tab will not cover the bottom border of the parent element. It is said on the Internet that the parent element haslaytout, but it doesn't work even after trying it. Finally, set margin-bottom:-1px; position in the tab element at the same time. :relative; This solves the problem.

What should be noted here is that the height of the tab element must be 1px greater than the height of the parent element.

4. Top attribute in CSS

1. Summary of problems often encountered in the use of css margin-top

Summarize the four common positioning attributes in css (left right top bottom)

In CSS styles, the margin-top attribute sets the top margin of an element. It can allow negative values. The default value for defining fixed top margin is 0. All major browsers support the margin-top attribute. Through this article, we will specifically talk about some problems often encountered when using the margin-top attribute in front-end pages. What should I do if the setting affects the parent element? What should I do if the margin-top attribute does not work? Wait

2. Exploring the use of the border-top attribute in CSS

This section will make it easier to learn the usage of the CSS border-top attribute, border-top The shorthand property sets all properties of the top border into one statement.

This article describes the usage of the CSS border-top attribute. The border-top abbreviation attribute sets all the attributes of the top border into one statement. I believe this article will definitely help you gain something.

3. CSS3 border-top-left-radius property

Mainly adds rounded borders to the four corners of the div element:

Note: border- The two length or percentage values ​​of the top-left-radius property define the shape of the edge corners of one quarter of the ellipse's outer border. The first value is the horizontal radius and the second is the vertical radius. Omit the second value, it is copied from the first. If either length is zero, the corners are square and not rounded. The percentage of the horizontal radius refers to the width of the bounding box, while the percentage of the vertical radius refers to the height of the bounding box.

Questions and answers related to positioning properties (left right top bottom):

1. css - Absolute pop-up window displayed by the right mouse button , left and top are the clientX and Y clicked by the mouse. In IE, bottom is auto

2. css - About offsetLeft and offsetTop

3. css - In the iPhone browser, when the input type is date, the text-align:right attribute does not take effect

4. html - Ask about margin-top issues

[Related recommendations]:

1. Video tutorial on how to learn CSS at your fingertips

2. A css, please explain; I don’t understand left :900em and left:auto_html/css_WEB-ITnos

3. Summary of common methods of positioning background images using CSS

The above is the detailed content of Summarize the four common positioning attributes in css (left right top bottom). For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!