Padding是比较常用CSS样式,我们可以利用padding样式来设置内边距,下面我们从基础语法到应用示范最后举一个小列子来给大家说一下padding样式如何使用,
padding语法结构与说明
padding : +数值+单位 或 百分比数值
div{padding:5px}设置对象距离四边边距为5px间隔
同时可以单独设置左、右、上、下边距离发布设置
1、padding-left 设置对象距离左边的边距补白间隔
div{padding-left:5px}
对象内距离左边补白间距为5px
2、padding-right 设置对象距离右边的边距补白间隔
div{padding-right:5px}
对象内距离右边补白间距为5px
3、padding-top 设置对象距离上边的边距补白间隔
div{padding-top:5px}
对象内距离上边补白间距为5px
4、padding-bottom 设置对象距离下边的边距补白间隔
div{padding-bottom:5px}
对象内距离下边补白间距为5px
div css Padding说明
检索或设置对象四边的补丁边距。
如果提供全部四个参数值,将按上-右-下-左的顺序作用于四边。
如果只提供一个,将用于全部的四条边。
如果提供两个,第一个用于上-下,第二个用于左-右。
如果提供三个,第一个用于上,第二个用于左-右,第三个用于下。
内联对象要使用该属性,必须先设定对象的height或width属性,或者设定position属性为absolute。
Padding的值不能为负值。
Padding位于对象(边框)以内,或这样说padding样式是位于对象内的内容区域与边框之间。
padding设置四边用法案例
为了对padding用法进一步了解,我们设置一个对象分别设置4边不同的padding补白间距,并且设置对象CSS宽度,css 高度、CSS边框属性样式。为了便于观察padding存在,我们设置padding-left(左)为20px,padding-right(右)为30px,padding-top(上)为40px,padding-bottom(下)为50px。
1、padding案例CSS代码
.div{ width:350px; height:80px; border:1px solid #00F;
padding-left:20px;padding-right:30px;padding-top:40px;padding-bottom:50px}
2、案例HTML代码
4. Case summary
padding is used to set the style of the distance from the four-sided border within the object to the content area, so to achieve spacing within the object, you can use css div + padding.
3. Padding abbreviation and case
#1. The four sides are the same. The padding abbreviation
If the padding setting value is the same on the four sides, if it is 5px, Original expression:
padding-left:5px;padding-right:5px;padding-top:5px;padding-bottom:5px;
can be abbreviated in CSS as:
padding:5px;
2. The abbreviation of different padding on the four sides
Just like the different padding values on the four sides in our second tutorial, padding-left:20px;padding-right:30px;padding- top:40px;padding-bottom:50px
We can abbreviate it as:
Padding:40px 30px 50px 20px;
Note that each value is separated by a space
Explain the meaning
The first 40px represents "top" padding-top:40px;
The second 30px represents "right" padding-right:30px;
The third 50px represents "bottom" padding-bottom:50px;
The fourth 20px represents "left" padding-left:20px;
3. The left and right sides are the same, top and bottom Abbreviations for padding with different values
If padding is 10px on the left and right, 20px on the top, and 30px on the bottom
General writing method:
padding-left:10px;padding-right:10px; padding-top:20px;padding-bottom:30px
The abbreviation can be:
Padding:20px 10px 30px;
The former first 20px represents the padding-top. 20px,
The second 10px represents padding-left and padding-right of 10px
The third 30px represents padding-bottom: 30px
4. Three sides Same, but one side has different values
If any three sides have the same value, but the other sides are different, we can still abbreviate it.
EXP
If the padding is 10px on the top and left and 20px on the bottom, the CSS style is generally written like this
padding-left:10px;padding-right:10px;padding -top:10px;padding-bottom:20px
The abbreviation is:
padding:10px;padding-bottom:20px
Note that the order cannot be reversed. The trick here is to browse The reader reads from top to bottom and from left to right, so we can first set the four sides to be the same, and then add a different style value for the other side.
Extended reading:
1.html compression optimization
2.css compression optimization
3.css optimization
4.css Word spacing
padding css summary
Padding style is a CSS style attribute that we use more frequently. Generally, we use padding to set the upper, lower, left, and right margin intervals within an object. Of course, if we encounter the indentation of the beginning text, we can use the css text-indent style. When using padding, pay attention to the increase or decrease in width. Padding takes up the width and height. If the total width is 500px, and a 10px padding style is set on the left and right, the width of the content area will become 480px. At the same time, pay attention to the meaning of the abbreviation PADDING when using the style. Try to use CSS abbreviations like
There are so many ways to use padding. For more exciting information, please pay attention to other related articles on the php Chinese website!
Related reading:
How to set paragraph line height and line spacing in HTML
How to write html document type declaration
The above is the detailed content of How to use padding attribute in css. For more information, please follow other related articles on the PHP Chinese website!

在css中,可用list-style-type属性来去掉ul的圆点标记,语法为“ul{list-style-type:none}”;list-style-type属性可设置列表项标记的类型,当值为“none”可不定义标记,也可去除已有标记。

区别是:css是层叠样式表单,是将样式信息与网页内容分离的一种标记语言,主要用来设计网页的样式,还可以对网页各元素进行格式化;xml是可扩展标记语言,是一种数据存储语言,用于使用简单的标记描述数据,将文档分成许多部件并对这些部件加以标识。

在css中,可以利用cursor属性实现鼠标隐藏效果,该属性用于定义鼠标指针放在一个元素边界范围内时所用的光标形状,当属性值设置为none时,就可以实现鼠标隐藏效果,语法为“元素{cursor:none}”。

CSS边界属性详解:padding,margin和borderCSS是一种用于控制和布局网页元素的样式表语言。在网页设计中,边界属性是其中一项非常重要的部分。本文将详细介绍CSS中边界属性的使用方法,并提供具体的代码示例。padding(内边距)padding属性用于设置元素的内边距,即元素内容和元素边界之间的空间。我们可以用正数或百分比值来设置内边距

在css中,rtl是“right-to-left”的缩写,是从右往左的意思,指的是内联内容从右往左依次排布,是direction属性的一个属性值;该属性规定了文本的方向和书写方向,语法为“元素{direction:rtl}”。

在css中,可以利用“font-style”属性设置i元素不是斜体样式,该属性用于指定文本的字体样式,当属性值设置为“normal”时,会显示元素的标准字体样式,语法为“i元素{font-style:normal}”。

转换方法:1、给英文元素添加“text-transform: uppercase;”样式,可将所有的英文字母都变成大写;2、给英文元素添加“text-transform:capitalize;”样式,可将英文文本中每个单词的首字母变为大写。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
