Ⅰ 怎麼將DIV添加進CSS裡面
將DIV添加進CSS裡面,首先我們需要給這個div一個id或者是class,然後獲取這個元素的id或者是class,css中書寫樣式就行了,如果是通用樣式的話,我們就可以直接寫div,然後加樣式就行,請看代碼:
<html>
<head>
<style>
#div1{ //Id的寫法
width:300px;
height:30px;
font-size:13px;
}
.div1{ //class寫法
width:300px;
height:30px;
font-size:13px;
}
div{ //通用樣式寫法
width:300px;
height:30px;
}
</head>
<body>
<div id='div1' class='div1'>
<p>我是測試文字</p>
</div>
</body>
</html>
Ⅱ 請幫我寫一個簡單的DIV+CSS網頁布局例子
樓上的也太復雜了,什麼都貼出來了?—
—
頁面
代碼
<div
class="content">
<div
class="left"></div>
<div
class="mid"></div>
<div
class="right"></div>
</div>
css文件
.content{
width:800px;
magin:0
auto;
}
.left{
float:left;}
.mid{
float:left}
.right{
float:left}
Ⅲ 寫出使用div+css布局製作網頁的步驟。
先寫框架,再寫內容,結合CSS代碼
Ⅳ 編寫一段CSS代碼使段落分成三種不同的類別
解決:
這樣就好了。
Css
<style type="text/css">
.one{
font-size:10px;
color:#FF0000;
font-weight:bold;
}
.two{
font-size:18px;
color:#00FF00;
text-decoration:underline;
}
.three{
font-size:18px;
color:#0000FF;
text-decoration:overline;
}
</style>
Html
<p class="one">加油、努力</p>
<p class="two">加油、努力</p>
<p class="three">加油、努力</p>