Can you target Google Chrome?

前端 未结 2 2037
广开言路
广开言路 2020-12-08 12:09

I need to position this update button on www.euroworker.no/order (you\'ll have to add an item to the cart, use the Kjøp button to add and Handlevogn to view the cart). Works

2条回答
  •  执笔经年
    2020-12-08 12:15

    @media screen and (-webkit-min-device-pixel-ratio:0) {
    
        /*Chrome CSS here*/
    
        #cartUpdate {
            position:absolute;
            width:160px;
            height:30px;
            left:660px;
            bottom:40px;
        }
    }
    

    Fixed the problem :)

    UPDATE

    This resource works better: CSS browser/OS selectors with JS.

提交回复
热议问题