简体   繁体   中英

Image Pressed In Effect — CSS

I was wondering how to achieve the following effect (Mozilla Start Page) where the icons look "pressed into" the page. Is that something that can be accomplished with CSS or is this purely a photoshop maneuver and and the background-color is just matched?

在此处输入图片说明

This should do the trick, feel free to play around with the colour as you see fit:

div {
    box-shadow: 0 1px 1px 0 #C7C7C7 inset;
    background: none repeat scroll 0 0 #E9E9E9;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM