<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="box"></div>
<script>
var box = document.getElementsByClassName("box")[0];
//设置元素的style属性和值
//box.setAttribute("style","width:200px;height:200px;background-color:red;");
//元素节点的style属性
/*
box.style.width = "200px";
box.style.height = "200px";
box.style.backgroundColor = "red";
*/
//cssText属性
//box.style.cssText = "width:200px;height:200px;background-color:red;";
</script>
</body>
</html>