css屬性與js中style物件的屬性對應表
css屬性與js中style物件的屬性對應表
CSS語法(不區分大小寫) |
JavaScript語法(區分大小寫) |
border |
border |
border-bottom |
borderBottom |
border-bottom-color |
borderBottomColor |
border-bottom-style |
borderBottomStyle |
border-bottom-width |
borderBottomWidth |
border-color |
borderColor |
border-left |
borderLeft |
border-left-color |
borderLeftColor |
border-left-style |
borderLeftStyle |
border-left-width |
borderLeftWidth |
border-right |
borderRight |
border-right-color |
borderRightColor |
border-right-style |
borderRightStyle |
border-right-width |
borderRightWidth |
border-style |
borderStyle |
border-top |
borderTop |
border-top-color |
borderTopColor |
border-top-style |
borderTopStyle |
border-top-width |
borderTopWidth |
border-width |
borderWidth |
clear |
clear |
float |
floatStyle |
margin |
margin |
margin-bottom |
marginBottom |
margin-left |
marginLeft |
margin-right |
marginRight |
margin-top |
marginTop |
padding |
padding |
padding-bottom |
paddingBottom |
padding-left |
paddingLeft |
padding-right |
paddingRight |
padding-top |
paddingTop |
|
|
CSS 語法(不區分大小寫) |
JavaScript 語法(區分大小寫) |
background |
background |
background-attachment |
backgroundAttachment |
background-color |
backgroundColor |
background-image |
backgroundImage |
background-position |
backgroundPosition |
background-repeat |
backgroundRepeat |
color |
color |
|
|
CSS語法(不區分大小寫) |
JavaScript 語法(區分大小寫) |
display |
display |
list-style-type |
listStyleType |
list-style-image |
listStyleImage |
list-style-position |
listStylePosition |
list-style |
listStyle |
white-space |
whiteSpace |
|
|
CSS 語法(不區分大小寫) |
JavaScript 語法(區分大小寫) |
font |
font |
font-family |
fontFamily |
font-size |
fontSize |
font-style |
fontStyle |
font-variant |
fontVariant |
font-weight |
fontWeight |
|
|
CSS 語法(不區分大小寫) |
JavaScript 語法(區分大小寫) |
letter-spacing |
letterSpacing |
line-break |
lineBreak |
line-height |
lineHeight |
text-align |
textAlign |
text-decoration |
textDecoration |
text-indent |
textIndent |
text-justify |
textJustify |
text-transform |
textTransform |
vertical-align |
verticalAlign |
我的GitHub地址:https://github.com/heizemingjun
我的部落格園地址:http://www.cnblogs.com/chenmingjun
我的螞蟻筆記部落格地址:http://blog.leanote.com/chenmingjun
Copyright ©2018 黑澤明軍
【轉載文章務必保留出處和署名,謝謝!】
相關文章
- 強制修改CSS的屬性styleCSS
- js物件屬性JS物件
- JavaScript style 屬性JavaScript
- HTML style 屬性HTML
- JS - 獲取CSS屬性值 getComputedStyle()與currentStyle()、style()方法JSCSS
- vue中慎用style的scoped屬性Vue
- Css 中的position屬性CSS
- css中的display屬性CSS
- CSS中的margin屬性CSS
- js的屬性物件的specified屬性用法簡單介紹JS物件
- JavaScript物件的資料屬性與訪問器屬性JavaScript物件
- CSS 屬性篇(七):Display屬性CSS
- css的屬性CSS
- css3中的zoom屬性以及jquery中css()方法操作元素的屬性CSSS3OOMjQuery
- javascript獲取物件直接量中的屬性和屬性值JavaScript物件
- JS物件繼承時,對引用屬性的處理JS物件繼承
- js如何獲取樣式表中定義的css屬性值JSCSS
- 深入理解物件的資料屬性與訪問器屬性物件
- list-style-image屬性用法
- Transform-style和Perspective屬性ORM
- List-style-type屬性失效
- GObject的物件屬性GoObject物件
- Object物件的屬性Object物件
- CSS 的 background 屬性CSS
- css的background屬性CSS
- javascript原型物件的屬性不能夠覆蓋物件自有屬性JavaScript原型物件
- CSS字型屬性和文字屬性詳解CSS
- js 物件方法、類方法、原型方法的區別;私有屬性、公有屬性、公有靜態屬性的區別JS物件原型
- CSS中content屬性的妙用CSS
- css3中的animation屬性CSSS3
- CSS屬性中Display與Visibility的不同CSS
- css display 屬性CSS
- CSS perspective 屬性CSS
- CSS transform 屬性CSSORM
- css常用屬性CSS
- 移出Json物件的三級屬性JSON物件
- 深入理解JavaScript類與物件:揭秘類欄位和靜態屬性的妙用,js靜態屬性和例項屬性JavaScript物件JS
- js--物件內部屬性與 Object.defineProperty()JS物件Object