- 打卡等级:偶尔看看
- 打卡总天数:8
- 打卡月天数:0
- 打卡总奖励:18
- 最近打卡:2024-10-16 19:11:21
官方
- 积分
- 163
|
代码如下:
- <!-- 引入Font Awesome图标库 -->
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
- <style>
- @media (min-width: 1200px) {
- .center-table {
- width: 80%; /* 大屏幕时,表格宽度为80% */
- }
- }
- @media (max-width: 1199px) {
- .center-table {
- width: 90%; /* 中等屏幕时,表格宽度为90% */
- }
- }
- .center-table {
- width: 100%; /* 默认情况下,表格宽度为100% */
- max-width: 980px; /* 设置最大宽度限制 */
- margin: 0 auto; /* 水平居中 */
- }
- hr {
- margin-top: 10px; /* 增加上边距 */
- margin-bottom: 10px; /* 增加下边距 */
- }
- /* 为图标添加样式 */
- .link-icon {
- margin-right: 8px; /* 图标和文字之间的间距 */
- }
- /* 去掉超链接的下划线并设置字体颜色为黑色 */
- a {
- text-decoration: none; /* 去掉下划线 */
- color: black; /* 设置字体颜色为黑色 */
- }
- </style>
- <div class="row row-BdBabf">
- <div class="col-lg-12">
- <div class="card card-html-BdBabf">
- <div class="card-block">
- <div align="center">
- <table class="center-table" border="0" align="center">
- <tr>
- <td>
- <!-- 添加图标和友情链接文字 -->
- <i class="fas fa-link link-icon"></i>友情链接 <br><hr>
- <a target="_blank" href="http://www.example-one.com">One</a>
- |
- <a target="_blank" href="http://www.example-two.com">Two</a>
- |
- <a target="_blank" href="http://www.example-three.com">Three</a>
- </a>
- </tr>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
复制代码
|
|