刚建立了一个HTML文档,怎么设定DIV的固定大小?
发布网友
发布时间:2022-04-26 22:18
我来回答
共7个回答
热心网友
时间:2022-04-20 21:04
你可以用CSS来设定,DIV为块级元素。例如:
<!doctype html>
<html>
<head>
<meta charset="utf-8' />
<title>设置DIV的固定大小</title>
<!--一下代码是设置DIV固定大小的(宽度:100像素;高度:60像素)-->
<style type="text/css">
#div {width:100px;height:60px;border:1px solid #f00;}
</style>
</head>
<body>
<div id="div"></div>
</body>
</html>
热心网友
时间:2022-04-20 22:22
设置div的宽度和高度,用来固定大小,设置div的margin值,用来固定页面位置。四个值分别对应上,右,下,左四个方向。
代码如下:
<div style="margin:10px 15px 10px 20px;width:400px; height:300px;">
</div>
热心网友
时间:2022-04-20 23:56
第一种:
在html中设置<div class="fix" id="firstdiv">,然后css文件中设置
.fix{width:30px;height:90px} ////看你的实际情况定。
第二种:
直接在div中写<div id="first" style="width:30px;height:90px">
热心网友
时间:2022-04-21 01:48
div的固定大小设置,用css样式来搞定。
样式可以这么写:
<style>
.divbox{ width:500px; height:300px; background-color:#f00; color:#fff; }
</style>
html里这么写div:
<div class="divbox">
这里是div,宽500,高300,底色是红色,文字是白色
</div>
热心网友
时间:2022-04-21 03:56
width:xxxpx;
height:xxxpx;
overflow:hidden/scroll; //防止撑大
热心网友
时间:2022-04-21 06:20
<div style="width:1002px; height:600px;">
</div>
像素根据自己的 需求改
热心网友
时间:2022-04-21 09:02
设置style中height和width值