论样式表css的重要性
如下图所示两个网页代码基本相同,但左边网页加入样式表后就形成了右边的视觉效果,由此可见
在网页中html用于标记,css用于显示,而JavaScript则用于增强与用户的交互性。
加入的代码是
<style type="text/css"> body{ background-color: #d2b48c; margin-left:20%; margin-right:20%; border:5px dotted gray; padding:10px 10px 10px 10px; font-family:sans-serif; } </style>