CSS Inset Borders

前端 未结 12 1697
没有蜡笔的小新
没有蜡笔的小新 2020-12-02 15:26

I need to create a solid color inset border. This is the bit of CSS I\'m using:

border: 10px inset rgba(51,153,0,0.65);

Unfortunately that cr

12条回答
  •  猫巷女王i
    2020-12-02 15:45

    So I was trying to have a border appear on hover but it moved the entire bottom bar of the main menu which didn't look all that good I fixed it with the following:

    #top-menu .menu-item a:hover {
        border-bottom:4px solid #ec1c24;
        padding-bottom:14px !important;
    }
    #top-menu .menu-item a {
        padding-bottom:18px !important;
    }
    

    I hope this will help someone out there.

提交回复
热议问题