課程
/前端開發(fā)
/HTML/CSS
/初識(shí)HTML(5)+CSS(3)-升級(jí)版
我設(shè)置了其他顏色但是因?yàn)槭浅溄樱峤缓筮€是顯示藍(lán)色,這個(gè)怎么改
2020-04-29
源自:初識(shí)HTML(5)+CSS(3)-升級(jí)版 10-5
正在回答
可能是把超鏈接靠后的引號(hào)刪掉了
<!DOCTYPE html>
<html>
<head>
? ? <meta charset="UTF-8">
? ? <title>color顏色</title>
? ? <style type="text/css">
? ? ?.o{
? ? ? ? ? text-decoration:none;
? ? ? ? ? color:red;
? ? ? } ?
? ? ? .l{
? ? ? ? ? ?text-decoration:none;
? ? ? ? ?color:rgb(13,200,25);
? ? ? }
? ? ? .k{
? ? ? ? ? color:rgb(20%,99%,55%);
? ? </style>
</head>
<body>
? ? <a class="o" href="http://idcbgp.cn/">慕課網(wǎng)1</a>
? ? <a class="k" href="http://idcbgp.cn/">慕課網(wǎng)2</a>
? ? <a class="l" href="http://idcbgp.cn/">慕課網(wǎng)3</a>
</body>
</html>
? ? ? .class1{
? color:red;
? text-transform: none;
? }
? .class2{
? ? color:hotpink;
? ? text-transform: none;
? .class3{
? ? color:black;
? ? <a class="class1" href="http://idcbgp.cn/">慕課網(wǎng)1</a>
? ? <a class="class2" href="http://idcbgp.cn/">慕課網(wǎng)2</a>
? ? <a class="class3" href="http://idcbgp.cn/">慕課網(wǎng)3</a>
<style type="text/css">
? ? ? ? .a{
? ? ? ? ? ? color:red;
? ? ? ? }
? ? ? ? .b{
? ? ? ? ? ? color:RGB(255,0,0);
? ? ? ? .c{
? ? ? ? ? ? color:#FF0000;
? ? <a class="a" href="http://idcbgp.cn/">慕課網(wǎng)1</a>
? ? <a class="b" href="http://idcbgp.cn/">慕課網(wǎng)2</a>
? ? <a class="c" href="http://idcbgp.cn/">慕課網(wǎng)3</a>
a:hover{
? ? ? ? color:red;
? ? }
<a href="#" style="color:red">jjj</a>
我這個(gè)能改
舉報(bào)
HTML(5)+CSS(3)基礎(chǔ)教程8小時(shí)帶領(lǐng)大家步步深入學(xué)習(xí)標(biāo)簽用法和意義
5 回答如果改變鏈接文本顏色?
4 回答第一個(gè)span里顏色設(shè)置為紅色,第二個(gè)顏色設(shè)置為綠色,最終會(huì)顯示綠色?
2 回答顏色的用法
2 回答關(guān)于修改顏色那一行
2 回答沒有設(shè)置顏色時(shí)的字體顏色?
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2021-03-17
可能是把超鏈接靠后的引號(hào)刪掉了
2020-06-01
<!DOCTYPE html>
<html>
<head>
? ? <meta charset="UTF-8">
? ? <title>color顏色</title>
? ? <style type="text/css">
? ? ?.o{
? ? ? ? ? text-decoration:none;
? ? ? ? ? color:red;
? ? ? } ?
? ? ? .l{
? ? ? ? ? ?text-decoration:none;
? ? ? ? ?color:rgb(13,200,25);
? ? ? }
? ? ? .k{
? ? ? ? ? ?text-decoration:none;
? ? ? ? ? color:rgb(20%,99%,55%);
? ? ? }
? ? </style>
</head>
<body>
? ? <a class="o" href="http://idcbgp.cn/">慕課網(wǎng)1</a>
? ? <a class="k" href="http://idcbgp.cn/">慕課網(wǎng)2</a>
? ? <a class="l" href="http://idcbgp.cn/">慕課網(wǎng)3</a>
</body>
</html>
2020-05-19
<!DOCTYPE html>
<html>
<head>
? ? <meta charset="UTF-8">
? ? <title>color顏色</title>
? ? <style type="text/css">
? ? ? .class1{
? color:red;
? text-transform: none;
? }
? .class2{
? ? color:hotpink;
? ? text-transform: none;
? }
? .class3{
? ? color:black;
? ? text-transform: none;
? }
? ? </style>
</head>
<body>
? ? <a class="class1" href="http://idcbgp.cn/">慕課網(wǎng)1</a>
? ? <a class="class2" href="http://idcbgp.cn/">慕課網(wǎng)2</a>
? ? <a class="class3" href="http://idcbgp.cn/">慕課網(wǎng)3</a>
</body>
</html>
2020-05-02
<style type="text/css">
? ? ? ? .a{
? ? ? ? ? ? color:red;
? ? ? ? }
? ? ? ? .b{
? ? ? ? ? ? color:RGB(255,0,0);
? ? ? ? }
? ? ? ? .c{
? ? ? ? ? ? color:#FF0000;
? ? ? ? }
? ? </style>
</head>
<body>
? ? <a class="a" href="http://idcbgp.cn/">慕課網(wǎng)1</a>
? ? <a class="b" href="http://idcbgp.cn/">慕課網(wǎng)2</a>
? ? <a class="c" href="http://idcbgp.cn/">慕課網(wǎng)3</a>
</body>
2020-04-30
a:hover{
? ? ? ? color:red;
? ? }
2020-04-30
<a href="#" style="color:red">jjj</a>
我這個(gè)能改