469719240 发表于 2018-7-26 00:21:03

<style type="text/css"什么时候要写上去?

老师资料上面为什么这两段代码一个有 type="text/css" 另一个没有?
<style type="text/css">
      h1 {color: red}
      p {color: blue}
      a {
            color: yellow;
            background: black;
      }
    </style>




<style>
      body {
            background-image: url("../img/bc.png")
      }
      h1 {
            text-align: center;
            color: white;
      }
      h2 {
            margin-left: 60%;
            color: white;
      }
      p {
            text-indent: 32px;
            font-size: 16px;
            line-height: 32px;
            color: white;
      }
      img {
            position: absolute;
            left: 50%;
            margin-left: -181px;
      }
    </style>

不二如是 发表于 2018-7-26 08:46:29

1、type标签主要是XML、HTML4时代的产物,那个时候必须指定类型。

2、HTML5时代可以不写(建议写,忘了也没关系{:10_336:}),因为浏览器内核帮你做了这件事情。

小甲鱼的二师兄 发表于 2018-7-26 21:27:28

可写可不写
页: [1]
查看完整版本: <style type="text/css"什么时候要写上去?