1. 程式人生 > 其它 >每日總結(22/3/21)

每日總結(22/3/21)

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>實驗一-鞏文彬</title>
<style type="text/css">
#header{
background-color: lightpink;
color: white;
text-align: center;
padding:20px;
}
#nav {
line-height:30px;
background-color:#eeeeee;
height:300px;
width:100px;
float:left;
padding:5px;
}
#section {
width:350px;
float:left;
padding:10px;
}
#footer {
position: absolute;
bottom: 0;
height: 100px;
width:100%;
background-color:white;
color:white;
clear:both;
text-align:center;
padding:5px;
}
</style>
</head>
<body>
<div id="header">
<h1>編輯部落格</h1>
</div>
<div id="nav">
<a href="">新部落格</a><br>
<a href="">歷史部落格</a><br>
<a href="">回收站</a><br>
</div>
<div id="section">
<textarea class="chattalk" style="border:none; resize: none; cursor: pointer;">
請輸入內容
</textarea>
</div>
<div id="footer">
<a href="boke.html"><button value="提交">提交</button> </a>
<input type="reset" value="重置">
</div>
</body>
</html>