1. 程式人生 > >html5-常用的通用元素

html5-常用的通用元素

tle dir 加粗 頭部 set idt 內容 itl 導航

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>常用的通用屬性</title>
<style type="text/css">

#div1{width: 100%;height: 708px;}
#div2{width: 100%;height: 10%}
#div3{background: #f8f8f8;width: 20%;height: 80%;float: left;}
#div4{background: #f0f0f0;width: 80%;height: 80%;float: left;}
#div5{width: 100%;height: 10%;clear: left;}
.class1{background: red;}
</style>
</head>
<body>
<div id="div1">
<div id="div2" class="class1" title="註釋的內容">頭部</div>
<div id="div3">導航欄</div>
<div id="div4">我是ifrmae框架</div>
<div id="div5" class="class1">尾部</div>
</div>
<b title="我可以加粗文字">b標簽</b>
<bdo dir="rtl">侯偉東的方向</bdo>
<p dir="rtl">張仙麗</p>
<p lang="en">hello word</p>
</body>
</html>

html5-常用的通用元素