/* 示例代码 */ /* 1. 使用box-shadow模拟边框 */ .box { box-shadow: 0 0 2px 2px #999; } /* 2. 实现圆形图片 */ .circle { border-radius: 50%; } /* 3. 使用flexbox实现布局 */ .container { display: flex; justify-content: center; align-items: center; } /* 4. 使用伪类选择器添加hover效果 */ .button:hover { background-color: #eee; } /* 5. 实现文本溢出效果 */ .ellipsis { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
更多的CSS100种食谱中,还包括了响应式布局、使用CSS3的新特性、定位和居中、使用变量、消除浮动等方面的知识,这些都是CSS样式设计中的常用技巧。掌握这些技能,能够让大家在设计 web 页面时事半功倍。