간단 하고 알 기 쉬 운 CSS 전단 코드

6467 단어 HTML
30 초 안에 읽 을 수 있 는 실 용적 인 CSS 코드 세 션 모음
\#이야기 CSS
Clearfix 부동 삭제
요소 가 자체 적 으로 하위 요 소 를 제거 하도록 확보 합 니 다.
메모:이것 은 당신 이 여전히 float 를 사용 하여 구 조 를 구축 할 때 만 유용 합 니 다.유연 한 레이아웃 이나 격자 레이아웃 을 사용 하 는 현대적 인 방법 을 고려 해 보 세 요.
HTML
<div class="clearfix">
  <div class="floated">float adiv>
  <div class="floated">float bdiv>
  <div class="floated">float cdiv>
div>

CSS

.clearfix::after  {
content  :  ""  ;
display  : block  ;
clear  : both  ;
}
.floated  {
float  : left  ;
}

float a
float b
float c


1. .clearfix::after  

2. content: ''  

3. clear: both  , 。


99+%



, ( )。

HTML

<div class="constant-width-to-height-ratio">div>


CSS
.constant-width-to-height-ratio  {
background  : #333  ;
width  : 50%  ;
padding-top  : 50%  ;
}
( )

padding-top    padding-bottom  height     , , 50% 50%,   width 。 。

99+%

⚠️ padding-top  。


HTML

<p class="custom-text-selection">Select some of this text.  p>

CSS
.custom-text-selection::selection  {
background  : red  ;
color  : white  ;
}
Select some of this text. 

::selection    ,  


84.6+%

⚠️  , 。
  • https://caniuse.com/#feat=css-selection

좋은 웹페이지 즐겨찾기