gpt4 book ai didi

html - 如何在表格中一行显示文字?

转载 作者:行者123 更新时间:2023-11-28 19:29:40 24 4
gpt4 key购买 nike

我试图将 Logo 、价格和按钮设置在一条偶数线上,但我无法以任何方式做到这一点。

我正在尝试提供相同的 margin-top - 当我设法设置为偶数行时,在桌面版本中没问题 - 但在移动设备上看起来有点不同。

我也不能更改位置:

.pc_vendor-offers .pc_action {
width: 250px;
margin-bottom: 0px;
margin-top: 27px;
}

我添加了:margin-top: 27px; 但按钮仍然保留在原位 prnt.sc/n1n9my

   .price-comparison-container {
clear: both;
margin-bottom: 30px;
position: relative;
}

.price-comparison {
border-top: 1px solid #d3d3d3;
padding-top: 20px;
position: relative;
}

.pc_title {
font-weight: bold;
font-size: 16px;
padding: 10px;
text-transform: uppercase;
margin-bottom: 10px;
float: left;
}

.pc_arrow-up, .pc_arrow-down {
position: absolute;
left: 0;
right: 0;
margin: auto;
}

.pc_arrow-up {
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid #FFF;
top: 2px;
}

enter image description here

这里是完整代码(由于限制) https://zabezcen.pl/fullcode.html

最佳答案

这不是HTML 问题,而是CSS 问题。这不是导致问题的代码,您需要提供 CSS 部分。

创建两个规则,它们在不同的屏幕分辨率下应用交替边距。更多关于媒体查询 here .

  @media only screen and (min-width: 768px) {
.pc_logo, .pc_offer, .pc_action {
margin-top: 25%;
}
@media only screen and (max-width: 600px) {
.pc_logo, .pc_offer, .pc_action {
margin-top: 10%;
}
}

关于html - 如何在表格中一行显示文字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55307590/

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