728x90
๋ฐ์ํ
ul li ์์๋ค์ display:inline-block; ์ ์ฌ์ฉํ์ฌ ์ ๋ ฌ์ ํ๋ฉด li ๋ค ์ฌ์ด์ ๊ณต๋ฐฑ์ด ์๊ธด๋ค.
1
2
3
4
5
6
7
8
9
10
|
|
ul{
overflow:hidden;
}
li{
display:inline-block;
padding:5px;
background-color:gold;
font-size:15px;
}
|
|
cs |
|
|
|
|
ํด๊ฒฐ๋ฐฉ๋ฒ
๊ฐ์ธ๋ ๋ถ๋ชจ์ font-size:0; ์ฃผ๊ธฐ
๋๋ margin ์์๊ฐ์ผ๋ก ์กฐ์ ํ๊ธฐ ๋ฑ์ด ์์ต๋๋ค.
๋ณดํต ์ ๋ font-size:0์ ํ๊ฑฐ๋ float ๋ฅผ ์ด์ฉํฉ๋๋ค.
1
2
3
4
5
6
7
8
9
10
11
|
ul{
overflow:hidden;
font-size:0;
}
li{
display:inline-block;
padding:5px;
background-color:gold;
font-size:15px;
}
|
cs |
์ฐธ๊ณ
https://css-tricks.com/fighting-the-space-between-inline-block-elements/
๋ฐ์ํ
'html, css' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
๋ฐฑ๊ทธ๋ผ์ด๋ ์ด๋ฏธ์ง ๋๊ฐ์ ์ผ๋ก ๋๋์ด ๋ณด์ฌ์ง๊ธฐ (0) | 2018.03.28 |
---|---|
css text effects example (0) | 2018.03.27 |
css ๋ง์ค์ ์ฒ๋ฆฌ (0) | 2018.03.22 |
css input radio custom ๋ผ๋์ค๋ฒํผ (0) | 2018.03.21 |
css placehoder color (0) | 2018.03.20 |