html中的空白字元問題

2022-02-13 13:22:22 字數 967 閱讀 5803

1、當我們想使用百分比來進行兩個盒子的併排

**:

doctype html

>

<

html

lang

="en"

>

<

head

>

<

meta

charset

="utf-8"

>

<

style

>

html,

body

.container

.container > div

.left

.right

style

>

head

>

<

body

>

<

div

class

="container"

>

<

div

class

="left"

>

div>

<

div

class

="right"

>

div>

div>

body

>

html

>

當我們想通過inline-block讓兩個div來併排,乙個戰父盒子的80%,乙個佔20%。可能看起來剛好100%,但是會由於**中左右兩個盒子之間的空白字元會導致右邊的盒子掉下來。

2、解決辦法

(1)消除空白字元

讓左右兩個盒子的**緊密連起來,就是不要讓他們中間有空白字元

(2)給父盒子新增屬性font-size:0;來消除空白字元

3、字母間距和單詞間距

字母間距——letter-spacing

單詞間距——word-spacing

Python中刪除空白字元

去除空格 去除左右兩邊的空格使用str.strip 去除所有空格 使用str.replace 去除空白符 去除所有的空白符 使用str.splite 及join 使用正則 使用str.translate 只去除左邊的空白字元 使用str.lstrip 使用正則 只去除右邊的空白字元 使用str.rs...

scanf與空白字元

scanf函式在遇到以下情況會停止乙個資料的輸入,是乙個資料哦,不是停止這個函式哦!1 空白字元 空白字元是指空格鍵,tab鍵,回車鍵 2 遇寬度結束 3 遇非法輸入 因此呢,當我們在用scanf輸入乙個字串的時候,空格已出現就停止了,比如 includeint main 執行發現 可我想要的是 h...

兩個div空白字元的問題

例如在乙個寬度1024px的盒子裡,放乙個80 左盒子和20 右盒子。如下 與bootstrap無關 class container class left div class right div div css如下 html,body container container div left rig...