美文网首页
HTML-CSS样式编辑

HTML-CSS样式编辑

作者: Caesar_emperor | 来源:发表于2020-08-24 13:39 被阅读0次

一.\color{green}{直接定义在行内标签}

<a href="https://www.baidu.com" style="text-decoration: none; color:red;font-size:16px;">访问 runoob.com!</a>

二.\color{green}{内部样式}

 <style>
        p {
            border:white solid 100px;
        }
    </style>

三.\color{green}{外部样式表}

<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>

相关文章

网友评论

      本文标题:HTML-CSS样式编辑

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