去掉a標籤(超連接)下劃線:css
在style裏設置屬性瀏覽器
aip
{it
text-decoration:none;io
}di
若是不想起始顏色爲藍色,同時將color屬性設爲白色標籤
即co
aps
{顏色
text-decoration:none;
color:white;
}
在網頁里加水平線:
輸入文字後加<hr/>標籤
若是文字不是本身想要的內容,將文字顏色設爲white便可
例如:
【body部分】
<body>
<div>
這是一條水平線
<hr/>
</div>
</body>
【head部分】
<style type="text/css">
div
{
color:white;
}
</style>
↑瀏覽器中打開時只會看到水平線而不會看到文字
div中的文字間距:
line-height:2px;(tips:文字間距line-height與div高度height一致時文字纔不會超出div,同時也要注意div寬度width)