刚从html和css那边过来,还没缓过来。
这一章里,设置的字体颜色和css设置颜色区别是什么?
javascript可以让HTML更生动,更好看,让页面内的元素能够灵活地移动或者活动。在这一章里,设置的字体颜色和css设置颜色,在网页窗口显示是没有任何区别的,一般情况下是使用css编写网页的样式,但是JavaScript可以判断什么时候变成什么颜色,是什么字号。
<html>
<head>
<style type="text/css">
#p1{
color:red;
}
</style>
</head>
<body>
<p id="p1">我是段落p1</p>
<p id="p2">我是段落p2</p>
<script type="text/javascript">
document.getElementById("p2").style.color="blue";
</script>
</body>
</html>
是 是的
是,css分离出来