盒子阴影和文本阴影

<style>
        div{

            width: 100px;
            height: 100px;
            background-color: yellow;
            /* 内容阴影 */
            text-shadow: 10px 10px 1px red;
            /* 多个阴影 */
            text-shadow: 10px 10px 1px red, -10px 10px 1px yellow;
            /* 盒子阴影 */
            box-shadow: 10px 10px 1px red;
        }
    style>

你可能感兴趣的:(前端,css,css3,前端)