推荐前端常用的CSS代码
预览地址: https://web.lieme.cn/cssDemo/cssdemo.html github地址: https://juejin.im/post/5dee20936fb9a01638079d52 前端常用的CSS代码 1、垂直居中对齐 .vc { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } .vc { position:absolute; top: 50%; left: 50%; width: 100px; height: 100px; margin:-50px 0 -50px; } 复制代码 2、全屏显示 html, body { position: fixed; width: 100%; height: 100%; } div { height: 100%; } 复制代码 3、不同a标签链接使用不同样式 // link a[href^="http://"]{ background: url(link.gif) no-repeat center right; } // emails a[href^="mailto:"]{ background: url(email.png) no-repeat center right; } // pdfs a[href$