开发者

CSS Border Issue on Google Chrome

I'm having trouble with different border colours and border-radius in css for my website.

I have created a box and added a border just to the top of the box as shown in the image below.

CSS Border Issue on Google Chrome

However, I wanted the top border to stretch the whole width of the box but the seems to be a problem. This problem only occurs with Google Chrome on pc, it seems fine on Safari and Internet Explorer.

#box {
    width:250px;
    height: 250px;
    background: #acacac;
    position: absolute;
    right:10px;
    top:315px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px开发者_Python百科;
    border-top: 45px solid white;
}


This is an issue with CSS borders and it's how you create the arrows that you see in some blogs. This is a limitation of how you can implement borders with rounded corners.

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜