我正在使用bootstrap,我有几个社交媒体按钮。我需要它们更大,我已经使社交图标足够大,但我似乎无法让文本同样增加。有人有主意吗? HTML:
<a role="button" class="btn btn-primary btn-tw col-6 mx-1 my-1"
href="https://twitter.com/alvanhumane?lang=en" target="_blank"><i class="fab
fa-twitter-square fa-5x"></i> Twitter</a>
<a role="button" class="btn btn-primary btn-in col-6 mx-1 my-1"
href="https://www.instagram.com/explore/locations/99236675/al-van-humane-
society/" target="_blank"><i class="fab fa-instagram fa-5x"></i>
Instagram</a>
和CSS:
a.btn-tw {
background-color: #00acee;
font-size: 5em;
}
a.btn-in {
background-color: #3f729b;
font-size: 5em;
}
答案 0 :(得分:1)
尝试使用!important
。它将覆盖在其后加载的任何内容
a.btn-in {
background-color: #3f729b;
font-size: 5em !important;
}
您可能还会在HTML文档的<head>
部分中自定义自定义CSS样式表之后加载它。将引导链接放在您自己的链接之上。
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>