我有这样的HTML和CSS:
#Productos {
background-color: pink;
height: 1000px;
}
#Productos #grid {
display: grid;
grid-template: 1fr 1fr / 1fr 1fr;
width: 100%;
height: 100%;
}
#Productos #grid img {
grid-area: 1 / 1 / span 2 / span 1;
max-height: 100%;
max-width: 100%;
object-fit: contain;
}
#Productos #grid #grid2 {
display: grid;
grid-template-rows: 30% 6% 14% 30% 6% 14%;
grid-area: 1 / 2 / span 2 / span 1;
}
#Productos #grid #grid2 #producto1 .imagen1 {
grid-row: 1/ 1;
width: 100%;
max-height: 100%;
background-color: blue;
object-fit: contain;
}
#Productos #grid #grid2 #producto1 .precio {
grid-row: 2/ 2;
width: 100%;
background-color: blue;
}
#Productos #grid #grid2 #producto1 .descripcion {
grid-row: 3/ 3;
width: 100%;
background-color: blue;
}
#Productos #grid #grid2 #producto2 .imagen2 {
grid-row: 4/ 4;
width: 100%;
max-height: 100%;
background-color: green;
object-fit: contain;
}
#Productos #grid #grid2 #producto2 .precio {
grid-row: 5/ 5;
width: 100%;
background-color: green;
}
#Productos #grid #grid2 #producto2 .descripcion {
grid-row: 6/ 6;
width: 100%;
background-color: green;
}
<section id='Productos'>
<h1>PRODUCTOS</h1>
<div id="grid">
<img src="/Users/admin/Desktop/Negocio/PremiumAlimentos.com/Resources/Media/feature-image-sqr.png" />
<div id="grid2">
<div id="producto1">
<img class="imagen1" src="/Users/admin/Desktop/Negocio/PremiumAlimentos.com/Resources/Media/Diamond Naturals/Lamb&Rice_Adult/Main.png">
<p class="precio">$000.00</p>
<p class="descripcion">Descripcion aqui</p>
</div>
<div id="producto2">
<img class="imagen2" src="/Users/admin/Desktop/Negocio/PremiumAlimentos.com/Resources/Media/Taste of the Wild/HighPrairie_Adult/Main.png">
<p class="precio">$000.00</p>
<p class="descripcion">Descripcion aqui</p>
</div>
</div>
</div>
</section>
但是绿色的三个元素比蓝色的两个元素小
我希望这6个元素(3个蓝色元素和3个绿色元素)使用它们各自行的空间:#producto1 .image1
-〉30% #producto1 .percio
-〉6% #producto1 .descripcion
-〉14% #producto2 .image2
-〉30% #producto2 .percio
-〉6% #producto2 .descripcion
-〉14%
也许我应该在producto 1中创建一个新的3行网格,在producto 2中创建另一个3行网格,而不是试图将6个元素排列在一个6行网格中。但这听起来像是一回事,只是更复杂,但也许这将解决大小问题。我会去尝试,但请帮助
1条答案
按热度按时间5lhxktic1#
你的代码有点复杂。2你在你的风格中使用了ID的ID,这是不必要的。3 ID是唯一的。4检查代码片段,它会有帮助。