国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

css小總結案例

Original 2019-02-19 15:18:12 217
abstract:<html><head>  <meta charset="utf-8">  <title>css練習</title>  <link rel="stylesheet" type="text/css" href="2.css"

<html>

<head>

  <meta charset="utf-8">

  <title>css練習</title>

  <link rel="stylesheet" type="text/css" href="2.css" />

  <style type="text/css">

    *{

 margin:0px;

 padding:0px;

}

.ph1{color:blue;}

span{background:#ccc;}

#ph3{font-size:20px;}

p i {color:red;}

a[href="https://www.baidu.com/"] {font-family:楷體;}

.box1{

width:200px;

height:150px;

background:#ccc;

margin:20px;

padding:30px;

text-align:center;

border:1px solid blue;

}

.box2{

width:200px;

height:150px;

background:#ccc;

margin:20px;

padding:30px;

border-left:1px solid red;

border-right:2px dashed blue;

}

  </style>

</head>

<body>

  <p style="color:red">內聯(lián)樣式</p>

  <p class="ph1">內部樣式</p>

  <p class="ph2">外部樣式</p>

  <span>標簽選擇器</span>

  <p id="ph3">id選擇器</p>

  <p class="ph1">類選擇器</p>

  <p><i>派生</i>選擇器</p>

  <a href="http://www.miracleart.cn/">屬性選擇器</a>

  <a href="https://www.baidu.com/">百度</a>

  <div class="box1">盒子:內部元素、內邊距、邊框、外邊距</div>

  <div class="box2">左右邊框</div>

</body>

</html>


Correcting teacher:滅絕師太Correction time:2019-02-19 15:23:12
Teacher's summary:前面的知識點比較書面,后面帶有案例會精彩很多,繼續(xù)加油!

Release Notes

Popular Entries