zoukankan      html  css  js  c++  java
  • 论样式表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>
    

      

  • 相关阅读:
    mysql-数据库增删改查
    判断,循环
    数组
    html 三种垂直居中
    箭头函数
    Array类型
    object
    JAVA WEB 行业技术
    一个好的程序员
    经典语录
  • 原文地址:https://www.cnblogs.com/pojdd/p/9030814.html
Copyright © 2011-2022 走看看