1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <link rel="stylesheet" href="./style.css" /> <title>Document</title> <style type="text/css"> h2 { background-color: aquamarine; font-size: 30px; color: brown; } p { background-color: brown; color: white; font-size: 20px; } table { border-color: tomato; border-width: 3px; } th { background-color: cadetblue; font-size: 25px; color: brown; width: 100px; height: 30px; } td { font-size: 20px; height: 20px; text-align: center; } #tiantian { font-size: 66px; color: blueviolet; } .testclass { color: crimson; font-size: 50px; background-color: aquamarine; } </style> </head> <body> <div>div测试文字!</div> <p>p测试文字</p> <br /> <h2>这是一个测试表格</h2> <table frame="box" rules="all"> <tr> <th>Boy</th> <th>Girl</th> <th>Village</th> </tr> <tr> <td>布布</td> <td>一二</td> <td>熊熊村</td> </tr> <tr> <td>灰灰</td> <td>蜜桃</td> <td>熊熊村</td> </tr> <tr> <td id="tiantian">田田</td> <td>甜甜</td> <td>熊熊村</td> </tr> <tr> <td style="color: blueviolet">详详</td> <td style="color: brown">敏敏</td> <td style="color: cadetblue">熊熊村</td> </tr> </table>
<h2>CSS的id选择器</h2> <p>html中每个元素都可以设置唯一的id,因此可以根据id选择渲染器</p>
<h2>CSS的类选择器</h2> <p> html中每个元素都可以设置class,因此可以根据class选择渲染器。不同的类名用空格隔开。 </p> <span class="testclass">这是类的测试!</span> <br /> <span class="testclass2">这是引用外部css文件的示例。</span>
<h2>伪类选择器</h2> <p>鼠标移动到超链接后变成蓝色!</p> <a href="https://www.web4xiang.top/blog/" target="_blank" >点击访问布布的博客!</a >
<h2>添加背景图片</h2> <div style=" background-image: url('https://new.ynau.edu.cn/__local/3/41/E7/B7F28F8B4EB33529B2E292A07ED_A7892B5A_7BFC2.jpg'); background-repeat: no-repeat; height: 150px; " > Home Browse Blast Downlaod Contact Help <input type="text" value="搜索框" /> <button>开始检索</button> </div> <h2>列表属性</h2> <ul style="list-style-type: circle"> <li>列表1</li> <li>列表2</li> <li>列表3</li> <li>列表4</li> <li>列表5</li> </ul> <h2>下拉列表属性</h2> <select name="" id=""> <option value="">请选择输入数据类型</option> <option value="">DNA</option> <option value="">RNA</option> <option value="" selected="selected">Protein</option> </select> <h2>边框属性</h2> <div class="div1">div边框测试</div> <h2>内边距padding</h2> <p>将外边框理解成一个盒子,那么内边距就是纸盒盖子的厚度,只有在厚度之下的空间才可以存放东西。</p> <div class="div1" id="box"> <div style="background-color: blueviolet">测试文字</div> </div> <div class="div1" id="box" style="color: brown;">测试文字2</div> <h2>CSS属性的优先级问题</h2> <p>行内样式表 > 内部样式表 > 外部样式表</p> <p>谁的选择范围小谁的优先级越高!</p>
<h2>鼠标样式属性</h2> <p>鼠标移动到这里显示一个小手。</p> <button style="cursor: pointer;">确认提交</button> </body> </html>
|