gpt4 book ai didi

css - 如何调整图标大小以使其响应?

转载 作者:行者123 更新时间:2023-11-28 16:45:51 24 4
gpt4 key购买 nike

如果我缩小浏览器/屏幕,如何让图标自动调整大小?这是我的部分代码和在大屏幕和小屏幕上显示时的外观图片。

<div class="row mt">
<div class="col-md-3 col-sm-3 mb">
<div class="green-panel pn">
<div class="green-header">
<h5>ADD NEW STUDENT</h5>
</div>
<div class="row">
<div class="centered">
<a href="<?php echo site_url('admin/addstud'); ?>"><i class="fa fa-user-plus"></i></a>
</div>
</div>
</div><! --/grey-panel -->
</div><!-- /col-md-4-->

<div class="col-md-3 col-sm-3 mb">
<div class="green-panel pn">
<div class="green-header">
<h5>ADD NEW FACULTY</h5>
</div>
<div class="row">
<div class="centered">
<a href="<?php echo site_url('admin/addfac'); ?>"><i class="fa fa-user-plus"></i></a>
</div>
</div>
</div><! --/grey-panel -->
</div><!-- /col-md-4-->

大屏幕: this is how it looks in a large screen

小屏幕: this is how it looks in a small screen

最佳答案

我很确定你可以减小字体大小,图标也会变小。

例子:

/* For screen width smaller than 768px */    
@media screen and (max-width: 768px) {
.fa {
font-size: 18px; // or whatever size you want
}
}

关于css - 如何调整图标大小以使其响应?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33206386/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com