容器我有3周的div(headcol1
,headcol2
和headcol3
)向左浮動:定心3周浮動的div向左
如何居中這3個元件,而無需使用padding-left
或margin-left
在他們的容器?結果看起來如下:
<html>
<div class="fivestar">
<div class="row">
<div class="headcol1">
<p><span>FOLLOW US</span></p>
<p>
<a href="<?php $this->info(" fb_link ") ?>" target="_blank">F</a>
<a href="<?php $this->info(" tt_link ") ?>" target="_blank">G</a>
<a href="<?php $this->info(" yt_link ") ?>" target="_blank">L</a>
<a href="<?php $this->info(" yt_link ") ?>" target="_blank">I</a>
<a href="<?php $this->info(" yt_link ") ?>" target="_blank">X</a>
</p>
</div>
<div class="headcol2">
<img src="public/images/common/starlogo.png">
</div>
<div class="headcol3">
<p><span>PHONE NO:</span></p>
<p class="nums">
<?php $this->info(["phone"]);?>
</p>
<hr width="120px">
<p class="nums">
<?php $this->info(["phone"]);?>
</p>
</div>
</div>
</div>
<html>
<style>
#header .fivestar {
margin: 0 auto;
padding-top: 15px;
}
#header .fivestar .headcol1 {
float: left;
border: 1px solid black;
width: auto;
}
#header .fivestar span {
font-family: 'myriad';
font-size: 1em;
color: #F24033;
}
#header .fivestar .headcol1 p a {
font-family: 'socialicoregular';
font- size: 2em;
color: #999999;
letter-spacing: 15px
}
#header .fivestar .headcol1 p a:hover {
color: #AC0000;
}
#header .fivestar .headcol2 {
float: left;
border: 1px solid black;
padding: 0px 80px 0px 80px;
}
#header .fivestar .headcol3 {
float: left;
border: 1px solid black;
width: auto;
}
#header .fivestar .headcol3 .nums {
font-family: 'RobotoSlab', serif;
color: #555555;
font-size: 1.250em;
font- weight: bold;
margin: 0px;
padding: 0px;
}
#header .fivestar .headcol3 hr {
margin: 0px;
padding: 0px;
}
</style>
請幫助後。謝謝:) –
請添加您的代碼。如果可能的話也是一個演示。我們無法幫助您處理您提供的信息。 –