js中设置div边框高度
发布网友
发布时间:2022-04-22 09:52
我来回答
共6个回答
热心网友
时间:2022-04-22 15:43
设置div边框高度,其实就是设置div的高度,修改css样式可以实现
元素.style.height = '10px';//将高度设为10px
元素.style.width = '20px';//将宽度设为20px;
举个例子:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
div{
height: 100px;
width: 100px;
background-color: #3e6bb8;
}
</style>
</head>
<body>
<div></div>
<script>
var mdiv = document.getElementsByTagName('div')[0];//获得元素
mdiv.style.height = '200px';//设高为200,变成一个100 * 200 的长方形
mdiv.style.width = '200px';//设宽为200,变成一个200 * 200 的正方形
</script>
</body>
</html>
热心网友
时间:2022-04-22 17:01
你试试div.style.borderbottom="0px";
border-bottom这个名字肯定不对吧。js中好像没有"-"这个符号。这个不符合命名规则,应该是非法的。
热心网友
时间:2022-04-22 18:35
关于div 底部边框的属性
var div1 = document.getElementById("d1");
div1.style.
borderBottom
borderBottomStyle
borderBottomColor
borderBottomWidth
存在这几个。。也可以
div1.setAttribute(name,value);来设置属性
热心网友
时间:2022-04-22 20:27
style.borderBottom
你那个是CSS中的
热心网友
时间:2022-04-22 22:35
borderBottom
按这样的命名方式
热心网友
时间:2022-04-23 00:59
div.style.border-bottom-style="0px"
应该是这样吧。