We have created a awesome theme
Far far away,behind the word mountains, far from the countries

CUSTOMER > HTML/CSS

HTML/CSS

Ä«Å×°í¸® CSS
Á¦¸ñ ¡á CSS ¼Ò½ºÁ¤¸®

CSS ¼Ò½º Á¤¸®

 rgba(»¡°­,ÃÊ·Ï,ÆĶû,Åõ¸íµµ); color: rgba(255,255,255,0.8);
 color: hsl(»ö»ó,äµµ,¸íµµ);  »ö»ó : 0~359  /  Åõ¸íµµ 0~1.0
 color: hsla(»ö»ó,äµµ,¸íµµ);  Ã¤µµ 0~100 / ¸íµµ 0~100
 line-height:ÁÙ³ôÀÌ (ÁÙ°£°ÝÀ» Á¶ÀýÇÑ´Ù.)  line-height:1.7;    ---> ±ÛÀÚÅ©±â X 1.7 = **px
 letter-spacing:¹®ÀÚ°£°Ý (¹®ÀÚ¿Í ¹®ÀÚ»çÀÌ °£°Ý(Ä¿´×) Á¶Á¤)  letter-spacing: 20px;
 text-decoration:underline;  ÅؽºÆ® ¾Æ·¡ ¼±±ß±â
 text-decoration:line-through;  ÅؽºÆ®¼± (Áß¾Ó) ¼±±ß±â
 <mark>Çü±¤ÆæÈ¿°ú¸¦ ³Ö°í ½Í´Ù.</mark>  mark {background:rgba(R,G,B,Åõ¸íµµ);}  --> CSS Á¤ÀÇ
 ::first-letter (ù¸Ó¸® ±ÛÀÚ Å©°Ô)
   float: left ¶Ç´Â right ¶Ç´Â none;
   padding: »ó ¿ì ÇÏ ÁÂ;
   line-heignt: ÁÙ°£°Ý
   font-size: ÆùƮũ±â;
   font-weight: bold; ÆùÆ® ±½°Ô Çϱâ
 .lead::first-letter{
   float:left;
   padding:0.05em 0.05em 0 0;
   line-heignt:0.95em
   font-size:4.1em;
   font-weight:bold;
}
 <dl><dt><dd>


 overflow:hidden;  --> Ç÷θ¦ ÇØÁ¦ÇÑ´Ù.


 ´Ü¾î : ´Ü¾î¼³¸í
 dl {
   overflow:hidden;
  }
 dt {
   float:left;
   font-weight:bold;
  }
 dd{
   margin:0 0 1em 0;
  }
 <ul> <li>
 disc     Á¡¸ð¾ç
 circle    Èò»ö¿ø¸ð¾ç
 square  »ç°¢¸ð¾ç
 none    Ç¥½ÃÇÏÁö ¾ÊÀ½
 list-style: url (À̹ÌÁö¸í);
  list-style:¸®½ºÆ® ¾Õ¿¡ Ç¥½ÃµÉ ¸ð¾ç;
.list {
   list-style:circle;
  }

<ul class="list"><li>
 background-attachment: ¹è°æ ±×¸²ÀÇ °íÁ¤;  background-attachment: fixed;
 linear-gradient(½ÃÀÛ»ö,Á¾·á»ö);  linear-gradient(#ff0000,#fff000);  --> ÆäÀÌÁöÀ§¿¡ ±×¶óµ¥À̼ÇÀ» ±ò¶§ »ç¿ë
 table {boder-collapse: collapse;}
 td:nth-child(4),td:nth-child(6) {text-align:right;}
 tbody tr:nth-child(2n) {background: #eeeeee}
 table {boder-collapse: collapse;} --> ¼¿°ú ¼¿»çÀÌ ¼±À¸·Î ±¸ºÐ
 td:nth-child(4),td:nth-child(6) {text-align:right;}  -->4,6¹ø° ¿À¸¥ÂÊ Á¤·Ä
 tbody tr:nth-child(2n) {background: #eeeeee}  -> °¡·Î 2¹ø°ÁÙÀÌ¸é ¹è°æ»ö ³Ö±â