美文网首页
元素的属性以及两个常用的属性

元素的属性以及两个常用的属性

作者: _Amarantine_ | 来源:发表于2019-04-02 20:43 被阅读0次

    元素的属性:每个标签都有相关的属性与属性值,

     属性的作用为元素提供更多的信息,属性语法:<p 属性:“属性值”></p>-->

    align属性:指定内容的对齐方式

    bgcolor:增加背景颜色

    <!DOCTYPE html>

    <html lang="en">

    <head>

          <meta charset="UTF-8">

          <meta name="viewport" content="width=device-width, initial-scale=1.0">

          <meta http-equiv="X-UA-Compatible" content="ie=edge">

          <title>Document</title>

    </head>

    <body bgcolor="red">

          <h1 align="left">我是1</h1>

          <h2 align="right">我是2</h2>

          <h3 align="center">我是3</h3>     

    </body>

    </html>

    相关文章

      网友评论

          本文标题:元素的属性以及两个常用的属性

          本文链接:https://www.haomeiwen.com/subject/mlmnbqtx.html