欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 前端技术 > HTML >内容正文

HTML

前端学习(1812):前端调试之shadow练习

发布时间:2023/12/10 HTML 59 豆豆
生活随笔 收集整理的这篇文章主要介绍了 前端学习(1812):前端调试之shadow练习 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

index.html

<!DOCTYPE html> <html lang="en"><head><!--系统内置 start--><script type="text/javascript"></script><!--系统内置 end--><meta charset="UTF-8"><title>练习</title><link rel="stylesheet" href="index.css"> </head><body><div class="box"><h3>小米&lt;小爱老师&gt;</h3><p>口袋里的英语外教</p><h4>499元起</h4></div> </body></html>

index.css

* {margin: 0;padding: 0; }.box {box-sizing: border-box;width: 200px;height: 256px;background: #ffffff;padding-top: 22px;text-align: center;box-shadow:0px 0px 10px rgba(0,0,0,0.11); }.box::before {content: '';display: block;width: 130px;height: 130px;margin: 0px auto 16px;background: url(./images/phone.jpg) no-repeat center;background-size: contain; }.box h3 {font-style: normal;font-weight: normal;font-size: 12px;line-height: 17px;color: #000000; }.box p {margin-top: 4px;margin-bottom: 8px;font-style: normal;font-weight: normal;font-size: 12px;line-height: 17px;color: #A8A8A8; }.box h4 {font-style: normal;font-weight: 500;font-size: 12px;line-height: 17px;color: #FD6821; }

运行结果

总结

以上是生活随笔为你收集整理的前端学习(1812):前端调试之shadow练习的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。