I am creating a vertical divider, that works fine. But the css is cumbersome.

The css is:

.headerDivider1 {
border-left:1px solid #38546d;height:80px;position:absolute;right:250px;top:10px;
}

.headerDivider2 {
border-left:1px solid #16222c;height:80px;position:absolute;right:249px;top:10px;
}

The html is:

<div class="headerDivider1"></div><div class="headerDivider2"></div>

The result is:

alt text

How could I tidy the html and css up please ?

link|improve this question

77% accept rate
thanks thirtydot – 422 Jan 13 '11 at 0:01
feedback

2 Answers

up vote 6 down vote accepted
.headerDivider {
     border-left:1px solid #38546d; 
     border-right:1px solid #16222c; 
     height:80px;
     position:absolute;
     right:249px;
     top:10px; 
}

<div class="headerDivider"></div>
link|improve this answer
perfect @amosrivera thankyou – 422 Jan 13 '11 at 0:02
feedback
<div class="headerdivider"></div>

and

.headerdivider {
    border-left: 1px solid #38546d;
    background: #16222c;
    width: 1px;
    height: 80px;
    position: absolute;
    right: 250px;
    top: 10px;
}
link|improve this answer
thankyou, however I prefer @amosrivera version – 422 Jan 13 '11 at 0:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.