美文网首页html学习笔记
2018-06-05——html段落

2018-06-05——html段落

作者: Ariel_wyy | 来源:发表于2018-06-05 22:40 被阅读0次

    html样式

    ·background-color 属性为元素定义了背景颜色:

    例:

    <html>

    <body style="background-color:yellow">

    <h2 style="background-color:red">This is a heaing</h2>

    <p style="background-color:green">This is a paragraph.</p>

    </body>

    </html>


    ·font-family、color以及font-size属性分别定义元素中文本的字体系列、颜色和字体尺寸:

    例:

    <html>

    <body>

    <h1 style="font-family:verdana"> A heading</h1>

    <p style="font-family:arial;color:red;font-size:20px">A paragraph.</p>

    </body>

    </html>


    text-align 属性规定了元素中文本的水平对齐方式:

    <h1 style="text-align:center">  This is a heading </h1>

    相关文章

      网友评论

        本文标题:2018-06-05——html段落

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