代码描述:cssText元素 设置多个样式 属性值。cssText元素设置多个样式属性值源码实例
本章节介绍一下cssText属性为指定元素设置多个样式属性值。 在介绍之前先看一段代码实例:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="https://www.51qianduan.com/" /> <title>51前端</title> <style type="text/css"> #antzone{ width:150px; height:100px; background:green; } </style> <script type="text/javascript"> window.onload=function(){ var odiv=document.getElementById("antzone"); odiv.style.textAlign="center"; odiv.style.fontSize="12px"; } </script> </head> <body> <div id="antzone" style="color:red">51前端</div> </body> </html>
上面是我们最为常见的设置元素样式的方式,其实我们完全可以使用style方式一次性设置元素的多个样式。 代码如下:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="https://www.51qianduan.com/" /> <title>51前端</title> <style type="text/css"> #antzone{ width:150px; height:100px; background:green; } </style> <script type="text/javascript"> window.onload=function(){ var odiv=document.getElementById("antzone"); odiv.style.cssText="text-align:center;font-size:12px"; } </script> </head> <body> <div id="antzone" style="color:red">51前端</div> </body> </html>
请绑定手机号,在继续操作
注意:只有绑定手机以后,才可使用网站全部功能