字体图标
<style>
.flex{
display: flex;
align-items: center;
justify-content: space-between;
width: 400px;
}
/* CDN 服务仅供平台体验和调试使用,平台不承诺服务的稳定性,企业客户需下载字体包自行发布使用并做好备份。 */
/* CDN 服务仅供平台体验和调试使用,平台不承诺服务的稳定性,企业客户需下载字体包自行发布使用并做好备份。 */
@font-face {
font-family: 'iconfont';
src: url('iconfont.woff2?t=1666770435576') format('woff2'),
url('iconfont.woff?t=1666770435576') format('woff'),
url('iconfont.ttf?t=1666770435576') format('truetype');
}
.iconfont {
font-family: "iconfont" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-gouwucheman:before {
content: "\e600";
}
.icon-shouye:before {
content: "\e8c6";
}
.icon1{
font-size: 36px;
color: rebeccapurple;
text-align: center;
}
.icon2{
font-size: 36px;
color: saddlebrown;
text-align: center;
}
</style>
<div class="flex">
<div>
<div class="iconfont icon1"></div>
<div>使用unicode方式引用</div>
</div>
<div>
<div class="iconfont icon-shouye icon2"></div>
<div>使用class方式引用</div>
</div>
</div>
效果图
媒体查询
<style>
.box{
margin-top: 100px;
}
.base{
width: 500px;
height: 500px;
background-color: cadetblue;
}
/* 当可视宽度大于1100px时 */
@media (min-width: 1100px) {
.base{
width: 500px;
height: 500px;
}
}
/* 当可视宽度大于700px 且 小于1100px时 */
@media (min-width: 700px) and (max-width: 1100px) {
.base{
width: 350px;
height: 350px;
}
}
/* 当可视宽度小于700px时 */
@media (max-width: 700px){
.base{
width: 100px;
height: 100px;
}
}
</style>
<div class="box">
<div class="base"></div>
</div>
效果图