html - Border bottom issue with Chrome -
i using image border bottom only. works fine in ff not in chrome.
in chrome taking effect 4 directions ie top left bottom right
my code is
.aboutbg .menu-box-content-wrapper { border-bottom-width: 5px; -webkit-border-image:url(../images/about-text-bg-box.png) 6 repeat; -moz-border-image:url(../images/about-text-bg-box.png) 6 repeat; border-image:url(../images/about-text-bg-box.png) 6 repeat; border-bottom-style: solid; }
in firefox, can see border bottom image in chrome can see border image in directions.
any highly appreciated. in advance.
you have use border-width: 0 0 5px;
instead of border-bottom-width: 5px;
.
check fiddle here.
Comments
Post a Comment