課程
/前端開發
/HTML/CSS
/初識HTML(5)+CSS(3)-升級版
請教一下,我在dw里使用這語句發現沒有作用,麻煩發夾幫我看一下
good morning
2016-09-25
源自:初識HTML(5)+CSS(3)-升級版 9-4
正在回答
<style type="text/css"><style>這行標簽多余了p{color: #0F3 !important;}.first{color: #F0C}</style></head><body><p>good morning</p><p class="first">good morning</p>
唱唱反調11 提問者
戰栗的超人 回復 唱唱反調11 提問者
<style type="text/css"><style>p{color: #0F3 !important;}.first{color: #F0C}</style></head><body><p>good morning</p><p class="first">good morning</p>
舉報
HTML(5)+CSS(3)基礎教程8小時帶領大家步步深入學習標簽用法和意義
1 回答dispaly:block不起作用
3 回答important 的用法
2 回答for起不了作用
2 回答important 對span 是不是不管用
3 回答!important
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網安備11010802030151號
購課補貼聯系客服咨詢優惠詳情
慕課網APP您的移動學習伙伴
掃描二維碼關注慕課網微信公眾號
2016-09-25
<style type="text/css">
<style>這行標簽多余了
p{color: #0F3 !important;}
.first{color: #F0C}
</style>
</head>
<body>
<p>good morning</p>
<p class="first">good morning</p>
2016-09-25
<style type="text/css">
<style>
p{color: #0F3 !important;}
.first{color: #F0C}
</style>
</head>
<body>
<p>good morning</p>
<p class="first">good morning</p>