How to set font position in css

coldplay.xixi
Release: 2023-01-03 09:26:30
Original
17280 people have browsed it

How to set the font position in css: 1. Use the [text-align] attribute to set the font position; 2. Use the position attribute to set the font position; 3. Use the padding and margin attributes to set the font position.

How to set font position in css

The operating environment of this tutorial: windows10 system, css3 version, DELL G3 computer. This method is suitable for all brands of computers.

How to set the font position in css:

Method 1: Use the text-align attribute to set the font position

text-alignThe attribute specifies the horizontal alignment of the element's text.

Syntax:

text-align : left | right | center | justify
Copy after login

text-align Parameter value and description:

  • left: left alignment

  • right: right-justified

  • center: centered

  • justify: aligned on both ends (not recommended, usually not used by most browsers)

Example:

p{
    text-align: left; /* 位置居左 */
    text-align: center; /* 位置居中 */
    text-align: right; /* 位置居右 */
}
Copy after login

Method 2: Use the position attribute to set the font position

The position attribute specifies the positioning type of the element. When the set value is absolute, relative, or fixed, you can use the top, right, bottom, and left attributes for positioning.

p{
    position: fixed; /* 相对于浏览器窗口定位 */
    left: 100px;     /* 距离浏览器左边100px */
    top: 200px;      /* 距离浏览器上边200px */
}
Copy after login

Method 3: Use padding and margin attributes to set the font position

  • marginAttributes set all margins of an element width, or set the width of the margins on each side. The

  • padding property sets the width of all padding of the element, or sets the width of the padding on each side separately.

Padding set on inline, non-replaced elements does not affect line height calculations; therefore, if an element has both padding and a background, it may visually stretch to other lines and may overlap with other content. The element's background extends across the padding. Negative margin values ​​are not allowed.

Example:

p{
    margin: 100px 200px; /* 文字距离上下有100px外边距 距离左右有200外边距 */
    padding: 100px 200px; /* 文字距离上下有100px内边距 距离左右有200内边距 */
}
Copy after login

Related tutorial recommendations:CSS video tutorial

##

The above is the detailed content of How to set font position in css. For more information, please follow other related articles on the PHP Chinese website!

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