CSS——语法

来源:互联网 发布:表单验证 js 编辑:程序博客网 时间:2024/06/08 11:59
<html><head>    <title>css的语法</title>    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">    <meta http-equiv="description" content="this is my page">    <meta http-equiv="content-type" content="text/html;charset=utf-8"><!--    语法1:    p{color:red;}    选择器{    样式属性键:样式属性值;    样式属性键:样式属性值1 样式属性值2 样式属性值3...;    }    语法2:    style="样式属性键:样式属性值;"     -->    <style type="text/css">    p{        color:red;    }    </style></head> <body>    <p>Welcome to CSS World!</p>    <p>----Welcome to CSS World----!</p></body></html>
0 0
原创粉丝点击