English 中文(简体)
CSS 412px 5个链接的证明
原标题:CSS Justify width of 5 links in 412px
  • 时间:2010-01-01 10:06:24
  •  标签:
  • css
  • justify

我想有五条线链接,大约为:5px 8px 5px 8px;固定幅度为:0px 2px 0px 2px;在412px div

这方面的一个例子是:。 http://www.branklin.com/questions/cs_justed_links.php

问题回答

这是我最接近的东西...... 你们需要围绕这些联系增加一夫多妻,或者在相对规模的同时,他们可以有dding/gin。 Unless their patter andpher are also relative %.

.section_left div {float:left;width:20%;}
.section_left a:link, .section_left a:visited { 
    display:block;margin:4px 0 0 2px;padding:5px 8px 5px 8px;
    text-decoration:none;background-color:#e6e6e6;color:#666;
    font-size:18px;font-family:Helvetica; }

<div><a href="#">..</a></div> # do this for each link

这里发生的情况是<代码>显示:block;。 在<代码>a内,标签导致自动填入母体,因此无需休妻,而dding和间隙自动调整。 注:<代码>float:left; 移至divs。

另一种选择当然是,考虑到婚礼和间隙以及最大宽度,确定与这些联系的固定宽度,但你最终以浮动点六分点值,即高冰。

其最容易的方式是展示财产(表、表格和表格)。

例如:

c :

div#links {
    display: table;
    width: 412px;
    border: dotted 1px gray;
}
div#links ul {
    display: table-row;
    margin: 0;
    padding: 0;
    list-style: none;
}
div#links ul li {
    display: table-cell;
    text-align: center;
}
div#links ul li a {
    padding: 5px 8px;
    background-color: gray;
    color: white;
}

和 html:

<div id="links">
  <ul>
    <li><a href="#">Daily</a></li>
    <li><a href="#">Weekly</a></li>
    <li><a href="#">Monthly</a></li>
    <li><a href="#">Quarterly</a></li>
    <li><a href="#">Yearly</a></li>
  </ul>
</div>




相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

jquery ui dialog opens only once

I have a button that opens a dialog when clicked. The dialog displays a div that was hidden After I close the dialog by clicking the X icon, the dialog can t be opened again.

Drop down background url in Safari Issue

selectBox.selectCSS { background: url(/Images/replacementSelectBackground.png) top left no-repeat height:auto; } I have an issue in Safari only where the image is not rendering on top ...

CSS specific for Safari

How do you target specifically safari in css with styles?

Aligning textarea in a form

Ive used the following css code to align my form elements: form { position:relative; } form input { position:absolute; left:11em; } However, the textarea element is not aligned correctly with the ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

CSS problem with page footer

I have defined my page footer in the css file as: #footer { position: absolute; height: 50px; text-align: center; background: #66CCCC; bottom: 0px; left: 0px; width: 100%; height: ...

热门标签