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

CSS設置背景顏色和邊框

Original 2019-01-30 15:34:57 342
abstract:<!doctype html> <html> <head> <meta charset="utf-8"> <title>CSS</title> <style> body{margin:0;} .main{margin:0px auto; width:500
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>CSS</title>
<style>
body{margin:0;}
.main{margin:0px auto; width:500px; padding:10px;}
.title{ width:100%;height:50px; line-height:50px; text-align:center; font-size:24px; background-color:#09F; color:#FFF; margin-bottom:5px;}
.title2{ width:100%;height:50px; line-height:50px; text-align:center; font-size:24px; border:1px solid #09F; margin-bottom:5px;}
.title3{ width:100%;height:50px; line-height:50px; text-align:center; font-size:24px; border-bottom:2px solid #09F; margin-bottom:5px;}
</style>
</head>
<body>
<div class="main">
<div class="title">PHP中文網(wǎng)</div>
<div class="title2">PHP中文網(wǎng)</div>
<div class="title3">PHP中文網(wǎng)</div>
</div>
</body>
</html>


Correcting teacher:天蓬老師Correction time:2019-01-30 16:36:53
Teacher's summary:只看到的邊框的練習, 背景有很多的樣式, 不僅是背景色, 試試其它的

Release Notes

Popular Entries