所以這裏是我的問題,我有一個名爲div
和tiles
這裏面的div是多個類,tile-small
和tile-large
。現在,每個類都具有不同的屬性,例如tile-large
類的寬度值較大,而tile-small
的寬度值較小,現在這些屬性似乎正確顯示,但每個類都具有由div定義的屬性tiles
。多個班級應顯示#fff
的背景顏色,tile-large
班似乎正在顯示背景顏色,但tile-small
班不是。我如何糾正我的代碼,並讓兩個類都顯示我在div中定義的背景顏色?類div中無法正確顯示
下面是整個HTML代碼; (隨着一個<style>
標籤的CSS值。)
<html>
<head>
<title>NowFootball | Home</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<style>
@font-face { font-family: title; src: url('fonts/title.ttf'); }
body {background-color: #efefef;margin-top: 15px;}
::selection {
background: #93CC04; /* WebKit/Blink Browsers */
}
::-moz-selection {
background: #93CC04; /* Gecko Browsers */
}
#content {
margin-left: auto;
margin-right: auto;
width: 97%;
}
#tiles {
background-color: #fff;
height: 200px;
margin-left: auto;
margin-top: auto;
border: 0px;
border-style: solid;
border-color: #fff;
box-shadow: 5px 0 5px -5px #CCC, 0 5px 5px -5px #CCC, -5px 0 5px -5px #CCC;
}
.tile-large {
background-color: #C4E66E;
height: 50px;
}
.tile-small {
background-color: #C4E66E;
height: 50px;
width: 50%;
margin-top: 5%;
}
.center-text {
text-align: center;
color: #1f1f1f;
}
.left-text {
float: left;
color: #F7F7F7;
line-height: 40px;
padding: 5px;
font-family: title;
font-size: 18px;
}
h2 {
line-height: 100px;
}
</style>
</head>
<body>
<div id="content">
<div id="tiles">
<div class="tile-large"><p class="left-text">Is there football on Wednesday?</p></div>
<h2 class="center-text">Yes, there is football on Wednesday the 14th of January.</h2>
<div class="tile-small"><p class="left-text">Attending Players</p></div>
</div>
</div>
</body>
</html>
這裏顯示的是我的問題的圖像。
正如你所看到的,第二類(下白盒的綠色條)沒有背景顏色添加到它。
下面是我想要我的代碼顯示;
我真的不明白......你設置' height:200px;'給父類#並問爲什麼你的'。-small'沒有白色背景? (同時提出問題嘗試更具描述性使用*顏色名稱*使您的問題更容易理解) –
我試圖解決的是爲什麼我的瓷磚小班不完全像瓷磚大班,大(在圖片中顯示的正確顯示,我想要的是有這個瓷磚的確切副本,但更小的寬度。 – MyNameIsNotSoCool
您是否意識到,您將'.tile - ***'包裹在白色陰影背景的父' #tiles'?比你已經設置父母的高度爲'200px'並且期待孩子'-small'擁有白色背景? –