How to set the distance between css tags and tags

青灯夜游
Release: 2023-01-03 09:25:29
Original
8964 people have browsed it

In CSS, you can use the margin series attributes to set the distance between labels. The margin attribute is used to set the outer margin of an element, which is the distance between its own border and the border of another container (i.e., the outer distance of the container). It is the distance between label elements and label elements.

How to set the distance between css tags and tags

The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.

In CSS, you can use the margin series attributes to set the distance between labels.

  • margin: Set all margin properties in one declaration

  • margin-bottom: Set the bottom margin of the element

  • margin-left: Set the left margin of the element

  • margin-right: Set the right margin of the element

  • margin-top: Set the top margin of the element

The margin refers to the distance from its own border to the border of another container, that is, the outer distance of the container, which separates the element from The spacing between elements.

[Recommended tutorial:CSS video tutorial]

Example:

Create a new html file and name it test.html, used to explain how to adjust the distance between two p tags using css.

In the test.html file, use the div tag to create a module and set its class to tzpp. Within the div tag, use the p tag to create two lines of text for testing.

How to set the distance between css tags and tags

##In the test.html file, write the tag. The css style of the page will be written in this within the label.

In the css tag, use "*" to initialize the inner and outer margins of all html elements in the page to 0, set the width of the div element with the class name tzpp to 200px; set the border below the div to 1px gray For the border, use the margin-top attribute to set the distance between the two p tags to 20px.

     

这是第一行测试文本。

这是第二行测试文本。

Copy after login

Open the test.html file in the browser to check the effect.


How to set the distance between css tags and tags

For more programming related knowledge, please visit:

Programming Video! !

The above is the detailed content of How to set the distance between css tags and tags. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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
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!