2020-09-01 |

内嵌css样式

内嵌样式是在HTML页面的head标签<style>元素中定义的。

例如,以下代码样式所有段落:

<html>
   <head>
      <style>
      p {
         color:white;
         background-color:gray;
      }
      </style>
   </head>
   <body>
      <p>第一段文字</p>
      <p>第二段文字</p>
   </body>
</html>
如果css样式只需要对当前页面起作用可用内嵌样式。

0

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论