CSS

作者: maocy | 来源:发表于2017-08-29 18:15 被阅读0次
getElementsByName()方法
返回带有指定名称的节点对象的集合。
#改变内容
var element=document.getElementById("header");
element.innerHTML="New Header";
#改变属性
document.getElementById("image").src="landscape.jpg";
#事件
http://www.w3school.com.cn/tags/html_ref_eventattributes.asp
#所有选择器
http://www.w3school.com.cn/cssref/css_selectors.asp

  • 伪类的语法:
selector : pseudo-class {property: value}

a:link {color: #FF0000}     /* 未访问的链接 */
a:visited {color: #00FF00}  /* 已访问的链接 */
a:hover {color: #FF00FF}    /* 当有鼠标悬停在链接上 */
a:active {color: #0000FF}   /* 被选择的链接 */
  • CSS 类也可与伪类搭配使用。
selector.class : pseudo-class {property: value}
a.red : visited {color: #FF0000}

<a class="red" href="css_syntax.asp">CSS Syntax</a>
  • 伪元素
伪元素.png

相关文章

网友评论

      本文标题:CSS

      本文链接:https://www.haomeiwen.com/subject/zhkadxtx.html