My Divsは完全に配置されています。私は中央のdivに画像を追加しようとしていますが、画像を追加するとdivが消えて画像が表示されなくなります。 イメージを追加する際に問題が発生しました。誰かが助けてください。なぜ自分の画像に私のコードに何が間違っているのか見せてくれないのですか?div内に画像が表示されない
<style>
.div_parent{
display:inline;
background-image: url('../images/image.jpg') top center no-repeat;"
}
.div_center {
width:300px;
float:left;
border-color:black;
border-style:solid;
border-width:3px;
height :700px
}
.div_right
{
background-color:#edeeef;
border-color:black;
border-style:solid;
border-width:3px;
width: 150px;
float:left;
height:100%
}
.div_left
{
background-color:#edeeef;
border-color:black;
border-style:solid;
border-width:3px;
width: 150px;
float:left;
height:100%
}
</style>
<div class="div_parent">
<div class="div_left">
<br /><br /><br /><br /><br /><br />
\t \t \t \t \t \t \t <FONT size="3" style="font-family:sans-serif ; color:red; text-align:center;" > <STRONG>Welcome to the Reporting Portal! </STRONG> </font><br />
\t \t \t \t \t \t \t <br />
\t \t \t \t \t \t <FONT size="2" style="font-family:sans-serif; text-align: left;"> \t
\t \t \t \t \t Reports on this site are available as view-only or as an Excel download. </font>
</div>
<div class="div_center">
</div>
<div class="div_right">
<br /><br /><br /><br /><br /><br />
<FONT size="3" style="font-family:sans-serif ; color:red; text-align:center;" > <STRONG> We're Here to Help! </STRONG> </font><br /><br />
\t \t \t \t \t \t \t
<FONT size="2" style="font-family:sans-serif; text-align:left;"> \t
We're friendly and available to chat. Reach out to us anytime and we'll happily answer your questions.</br><br />
Supervisors should submit requests including specific fields and search criteria to us at Report Manager</a></font>
</div>
</div>
を?同じ高さですか?両方のために幅が小さすぎるときにもう一方の下に1つのdivがあり、それらを左に浮かせますか? – KujAslani
私はそれらを整列させたい1 ---- 2 ----- 3 2面1つはそれぞれ15pxのようにすべきであり、中間のものは最も広いべきである。 – CrazyCoder