幕布斯1361130
2019-03-19 15:30
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>子选择符</title>
<style type="text/css">
.food>li{border:1px solid red;}/*添加边框样式(粗细为1px, 颜色为红色的实线)*/
.first>span{border:1px;solid :red}
</style>
</head>
<body>
<p class="first">三年级时,<span>我还是一个<span>胆小如鼠</span>的小女孩</span>,上课从来不敢回答老师提出的问题,生怕回答错了老师会批评我。就一直没有这个勇气来回答老师提出的问题。学校举办的活动我也没勇气参加。</p>
<h1>食物</h1>
<ul class="food">
<li>水果
錯誤:.first>span{border:1px;solid :red}
正確.first>span{border:1px solid red;}
.first>span{border:1px solid red}
1px后没有分号,solid后没有冒号
.first>span{border:1px;solid :red} 你仔细看一下这一句,和上边的对照一下就发现问题了。
.first>span{border:1px;solid :red}
solid后没有冒号
初识HTML(5)+CSS(3)-升级版
1225297 学习 · 18230 问题
相似问题