如何在两条线之间平均创建边框底部

时间:2013-10-25 12:01:36

标签: css list border

我有一个:

.menuoptions {
    height:30px;
    width:225px;
    color:#666;
    line-height:40px;
    font-weight:bold;
    padding-left:10px;
    margin-top:-10px;
    border-bottom:solid 1px #FF0000;

}

但我希望每个列表之间的底线相同,而不是直接在单词下方。 这有可能吗?

Fiddle

1 个答案:

答案 0 :(得分:4)

试试这个:

CSS:

.menuoptions li:not(:last-child){
    border-bottom:solid 1px #FF0000;        
}

DEMO