博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
常见Style 对象属性值
阅读量:6124 次
发布时间:2019-06-21

本文共 1169 字,大约阅读时间需要 3 分钟。

Style对象的主要需要关注的属性分为4类,下面分别介绍下:

  • Background 属性

  backgroundColor 属性设置元素的背景颜色

    Object.style.backgroundColor=color-name|color-rgb|color-hex|transparent

    document.getElementById('test_id4').style.backgroundColor="#FFCC80";

  • Border 和 Margin 属性

document.getElementById("test_id4").style.padding="1cm";

document.getElementById("test_id4").style.border="thick dotted #000000";

document.getElementById("test_id4").style.border="thick dotted #000000";

document.getElementById("test_id4").style.margin="2cm";

  • Layout 属性

document.getElementById("test_id4").style.cursor="help";

document.getElementById("test_id4").style.display="none";

效果如同删除了,原来的位置也被删除了,完全不展示了

document.getElementById("test_id4").style.visibility="hidden";

效果就是不显示了,但是位置还在

document.getElementById("test_id4").style.height="100px";

document.getElementById("test_id4").style.width="300px";

  • Text 属性

document.getElementById("test_id4").style.color="#ff0000";

document.getElementById("test_id4").style.fontFamily="arial,sans-serif";

document.getElementById("test_id4").style.fontSize="larger";

document.getElementById("test_id4").style.fontStyle="italic";

document.getElementById("test_id4").style.fontWeight="900";

转载地址:http://aifua.baihongyu.com/

你可能感兴趣的文章
ABP实战--集成Ladp/AD认证
查看>>
存储过程
查看>>
phpcms v9栏目列表调用每一篇文章内容方法
查看>>
python 自定义信号处理器
查看>>
luov之SMTP报错详解
查看>>
软件概要设计做什么,怎么做
查看>>
dwr
查看>>
java的特殊符号
查看>>
word2010中去掉红色波浪线的方法
查看>>
fabric上下文管理器(context mangers)
查看>>
JQuery-EasyUI Datagrid数据行鼠标悬停/离开事件(onMouseOver/onMouseOut)
查看>>
并发和并行的区别
查看>>
php小知识
查看>>
Windows下安装、运行Lua
查看>>
Nginx 反向代理、负载均衡、页面缓存、URL重写及读写分离详解(二)
查看>>
初识中间件之消息队列
查看>>
MyBatis学习总结(三)——优化MyBatis配置文件中的配置
查看>>
Spring常用注解
查看>>
我的友情链接
查看>>
PCS子层有什么用?
查看>>