第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

無(wú)法為具有 id 的 div 元素設(shè)置背景顏色

無(wú)法為具有 id 的 div 元素設(shè)置背景顏色

青春有我 2023-05-25 15:38:18
我是網(wǎng)頁(yè)設(shè)計(jì)的新手。在這個(gè)項(xiàng)目中,我試圖用它們的 id 為 5 個(gè) div 元素設(shè)置背景顏色。其中 3 個(gè)有效,但最后 2 個(gè) div(飲料和食物)沒(méi)有變色。我還嘗試重新排列和重命名元素或?qū)⒃馗臑?p 標(biāo)簽,但它們都有同樣的問(wèn)題。這是我的代碼和結(jié)果:<html>? ? <head>? ? ? <style>? ? ? ? ?body? ? ? ? ? {? ? ? ? ? ? padding:0px;? ? ? ? ? ? margin:0px;? ? ? ? ? }? ? ? ? #navigationbar? ? ? ? {? ? ? ? ? width:100%;? ? ? ? ? height:131px;? ? ? ? ? position:absolute;? ? ? ? ? top:526px;? ? ? ? ? ? ? ??? ? ? ? }? ? ? ? .d1? ? ? ? {? ? ? ? ? font-weight:bold;? ? ? ? ? text-align:center;? ? ? ? ? font-size:20pt;? ? ? ? ? width:20%;? ? ? ? ? height:100%;? ? ? ? ? float:left;? ? ? ? ? margin:0px;? ? ? ? }? ? ? ? .p1? ? ? ? {? ? ? ? ? margin-top:65px;? ? ? ? }? ? ? ? #breakfast? ? ? ? {? ? ? ? ? background-color:red;? ? ? ? }? ? ? ? #sweets? ? ? ? {? ? ? ? ? background-color:#ff1a1a;? ? ? ? }? ? ? ? #appetizer? ? ? ? {? ? ? ? ? background-color:#009933;? ? ? ? {? ? ? ? #food? ? ? ? {? ? ? ? ? background-color:lime;? ? ? ? }? ? ? ? #drink? ? ? ? {? ? ? ? ? ? background-color:blue;? ? ? ? }? ? ? ? ? ? </style>? ? </head>? ? <body>? ? ? ?<div id="navigationbar">?? ? ? ? ? ? ? ? <div class="d1" id="breakfast">? <p class="p1"> Breakfast? </p>? </div>? ? ? ? ? ? ? ? <div class="d1" id="sweets">? ? ?<p class="p1">? ?Sweets? ?</p>? </div>?? ? ? ? ? ? ? ? <div class="d1" id="appetizer">? <p class="p1"> Appetizer? </p>? </div>?? ? ? ? ? ? ? ? <div class="d1" id="drink">? ? ? <p class="p1">? Drink? ? ?</p>? </div>? ? ? ? ? ? ? ? <div class="d1" id="food">? ? ? ?<p class="p1">? ?Food? ? ?</p>? </div>? ? ? ? </div>? ? </body></html>
查看完整描述

2 回答

?
萬(wàn)千封印

TA貢獻(xiàn)1891條經(jīng)驗(yàn) 獲得超3個(gè)贊

您的代碼中有一個(gè)錯(cuò)誤的括號(hào):


#appetizer

{

   background-color: #009933;

{ /* wrong bracket */

代替


#appetizer

{

    background-color: #009933;

}


查看完整回答
反對(duì) 回復(fù) 2023-05-25
?
倚天杖

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超3個(gè)贊

這是一個(gè)工作版本,為簡(jiǎn)潔和外觀做了一些修改。


.d1 { text-align: center; width: 20%; height: 100%; float: left; }

.p1 { margin-top: 65px; }

#breakfast { background-color: red; }

#sweets { background-color: skyblue; }

#appetizer { background-color: #009933; } /* <-- The issue was here */

#food { background-color: lime; }

#drink { background-color: blue; }

<div id="navigationbar">

  <div class="d1" id="breakfast">

    <p class="p1"> Breakfast </p>

  </div>

  <div class="d1" id="sweets">

    <p class="p1"> Sweets </p>

  </div>

  <div class="d1" id="appetizer">

    <p class="p1"> Appetizer </p>

  </div>

  <div class="d1" id="drink">

    <p class="p1"> Drink </p>

  </div>

  <div class="d1" id="food">

    <p class="p1"> Food </p>

  </div>

</div>


查看完整回答
反對(duì) 回復(fù) 2023-05-25
  • 2 回答
  • 0 關(guān)注
  • 173 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)