aoki 发表于 2025-1-4 20:21:12

公众号关注引导源码

本帖最后由 aoki 于 2025-1-5 10:28 编辑

<style>
.container {
    display: flex;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.qr-code {
    width: 80px; /* 根据需要调整宽度 */
    height: 80px; /* 根据需要调整高度 */
    margin: 10px; /* 添加上下左右各20px的边距 */
}
.content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.qr-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}
.qr-subtitle {
    font-size: 10px;
    color: #666;
}
</style>
<div class="container">
<img src="https://pic.fenx.top/view.php/c37b82b08deb7cffc20a8e1dc6616ff2.png" alt="QR Code" class="qr-code">
<div class="content">
    <div class="qr-text">扫一扫关注微信公众号</div>
    <div class="qr-subtitle">获取最新资讯</div>
</div>
</div>效果图

七夏 发表于 2025-1-4 22:11:57

把body{……}这一段代码删掉试试

七夏 发表于 2025-1-4 22:13:06

39行和40行也删掉
页: [1]
查看完整版本: 公众号关注引导源码