开发者

vertical divider using css ( ie. issue )

开发者 https://www.devze.com 2023-02-25 06:34 出处:网络
We are using vertical dividers using css. Code is: .sectiondivider { border-left:1px solid #d9dbdd; border-right:1px solid #ffffff;

We are using vertical dividers using css.

Code is:

.sectiondivider {
 border-left:1px solid #d9dbdd; 
 border-right:1px solid #ffffff; 
 height:300px;
 position:absolute;
 right:500px;
 top:310px; 
}

.section2divider {
 border-left:1px solid #d9dbd开发者_开发技巧d; 
 border-right:1px solid #ffffff; 
 height:300px;
 position:absolute;
 left:720px;
 top:310px; 
}

Problem is they are not being rendered in correct position in internet explorer. Is there a better way to overcome this issue. Tested in FF Chrome IE 8


This is a suggestion for trying:

earlier version of IE had issue with right in CSS. Try to see if you can use left to do it instead and try it again in IE.

0

精彩评论

暂无评论...
验证码 换一张
取 消