Ⅰ 怎么将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>