当前位置: 首页 > 图文教程 > 网页制作 > CSS样式表 > JavaScript CSS Style属性对照表

CSS样式表
正确地利用css改进网站设计的3个技巧
CSS网页设计 把HTML标记分类
几个Reset CSS的八卦问题
css 网页虚线制作方法剖析
网页制作小技巧 dl dt dd标签用法
玩转CSS3色彩
RGBa色彩的浏览器支持分析
WEB标准心得之网页重构的思路
学习web标准的十个重要理由总结
CSS 星级评价效果代码
ie6 fixed bug的解决方法 (css+js)
html pre标签使文本自动换行
CSS word-wrap同word-break的区别
css 入门基础教程
IE7或者IE8全屏解决方案
JavaScript CSS Style属性对照表
优秀设计和卓越设计之间的细微区别
CSS教程:容易忽略的但是很熟悉的CSS属性
通过语义化的标签减少DIV简化网页代码
html和css实现数据图表的展示效果

CSS样式表 中的 JavaScript CSS Style属性对照表


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2010-01-20   浏览: 324 ::
收藏到网摘: n/a

比如:鼠标经过一个图片时我们让图片加一个边框,代码可能是这样:

JavaScript代码

复制代码
代码如下:

<script type="text/javascript">   
    function imageOver(e) {   
        e.style.border="1px solid red";   
    }   
    function imageOut(e) {   
        e.style.borderWidth=0;   
    }   
</script>   
<img src="phplamp.gif" onmouseover="imageOver(this)" onmouseout="imageOut(this)" />  

JavaScript中style后面的属性应该是什么?
JavaScript CSS 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