在 CSS 中加入空格的方法有 5 種:空白符、tab 字元、內聯塊元素、white-space 屬性和 text-indent 屬性。
在CSS 中加入空格
在CSS 中,新增空格有以下幾種方法:
1. 空白符
(空格字元)或\s
(空白字元轉義序列)在CSS 屬性值中會新增空格。 margin-right: 20px;
#2. tab
字元
\t
(製表符轉義序列)在CSS 屬性值中加入製表符。 padding-left: 2\tt;
#3. display: inline-block;
display: inline-block;
#4. white-space
屬性
normal
(預設):保留空格和換行符號。 pre
:保留空格和換行符,並將其顯示為預先格式化的文字。 nowrap
:不換行,消除空格。 white-space: nowrap;
#5. text-indent
屬性
text-indent: 20px;
以上是css中怎麼加入空格的詳細內容。更多資訊請關注PHP中文網其他相關文章!