排列卡片的难题仍然存在
P粉766520991
P粉766520991 2023-09-10 14:31:47
0
1
399

我是一个对HTML新手,我一直在尝试为我的朋友创建一个网站,在网站中我正在制作卡片来展示信息。由于我在不同的部分制作了多个卡片,我想要将所有的卡片在它们各自的部分中对齐,但是我一直遇到困难。

首先,我尝试了inline-block,因为我猜测所有的元素加起来应该是一个块,但结果什么都没有发生。接下来,我尝试创建一个表格,并在表格中列出卡片,但也没有成功。它部分地成功了,但其他的卡片被缩小了,文本也溢出了。我该如何修复它?

* { font-family: Arial, Helvetica, sans-serif; } body { background-color: #fafafa; color: rgb(32, 32, 32); margin: 0; } header { position: sticky; top: 0px; } nav { background-color: #fafafa; margin: 0; width: 100%; } ul { text-align: center; } li { display: inline-flex; text-align: center; } a { float: right; list-style-type: none; text-decoration: none; color: rgb(0, 0, 0); background-color: #fafafa; padding: 40px; } a:hover { float: right; list-style-type: none; text-decoration: none; transition-duration: 0.8s; font-size: 25px; } .Fcard1 { box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); transition: 0.3s; width: 16%; margin-left: 32px; } .Fcard1:hover { box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2); } .FCcontainer1 { padding: 2px 16px; } .Fcard2 { box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); transition: 0.3s; width: 16%; margin-left: 32px; } .Fcard2:hover { box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2); } .FCcontainer2 { padding: 2px 16px; }
     
Avatar

Placeholder

rrreee.00 USD

Avatar

Placeholder

rrreee.00 USD

P粉766520991
P粉766520991

全部回复 (1)
P粉574268989

尝试将它们放在一个 div class="input-group" 中:

Avatar

Placeholder

rrreee.00 USD

Avatar

Placeholder

rrreee.00 USD

    最新下载
    更多>
    网站特效
    网站源码
    网站素材
    前端模板
    关于我们 免责声明 Sitemap
    PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!