论样式表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>

  

 

posted @ 2018-05-13 01:25  一梦箭心  阅读(555)  评论(0编辑  收藏  举报