gpt4 book ai didi

html - CSS:宽度属性不适用于 div 标签

转载 作者:太空宇宙 更新时间:2023-11-04 01:07:10 26 4
gpt4 key购买 nike

我正在尝试创建产品目录。我计划创建多行,而每行中各有 2 个产品。

因此在每一行中,第一个产品属于 product-1 类,第二个产品属于 product-2 类。

我使用 float:left 将页面垂直分为两部分,并为这两个类指定了 width:50%

我还为 product-2 类指定了 left:50%(将其推到左侧)

我为这两个类保留了 display:blockposition:relative

但是 width 属性似乎不起作用。

代码:https://jsfiddle.net/abhaygc/0pfygcbe/

代码片段:

body{
height: 100vh;
margin: 0px;
overflow: scroll;
}
.header{

background-color: white;
height:8%;
overflow: hidden;
font-style: "Roboto";
font-size: 25px;
border-bottom: 2px solid;
border-bottom-color: #cccccc;
}
#clear{
clear: both;
}
.logo{
margin-top: 12px;
float: left;
left: 0px;
padding-right: 50px;
}
#logo:hover{
background: transparent;
}
.links{
display: block;
float: right;
margin-right: 10px;
margin-top: 10px;
}
a{
position: relative;
right: 0px;
/*top: 25px;*/

padding-left: 10px;
padding-right: 10px;

color:black;
letter-spacing: 2px;
font-weight: 200;
text-decoration: none;
}
a:hover{
background-color:#cccccc;
}

.content{
display: block;
background-color: white;
height: 92%;
margin-top: 0px;

}

#clear{
clear: both;
}

.image{
display: block;
width: 200px;
height: 200px;
border-style: dashed;
border-color: red;
border-width: 2px;
overflow: hidden;
}

.product-1{
display: block;
position: relative;

padding-left: 10%;
padding-right: 10%;


margin-top: 5%;

float: left;
left: 0px;
width: 40%;
overflow: hidden;

border-style: solid;
border-color: black;
border-width: 1px;
}

.product-2{
display: block;
position: relative;


padding-left: 10%;
padding-right: 10%;


margin-top: 5%;

float: left;

left: 50%;
width: 50%;
overflow: hidden;

border-style: solid;
border-color: black;
border-width: 1px;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
<link rel="stylesheet" type="text/css" href="products.css">
<title>Products</title>
</head>
<body>
<div class="header">
<div class="logo">
<a href="home.html"><img id="logo"src="logo.png" alt="LOGO"></a>
</div>
<div class="links">
<a href="home.html">Home</a>
<a href="products.html">Products</a>
<a href="login.html">Login</a>
<a href="register.html">Register</a>
<a href="home.html">Contact</a>
<a href="home.html">About</a>
</div>
</div>
<div class="content">
<div class="product-1 product">
<div class="image">
<img src="slide-4.jpg" alt="Image 1" />
</div>
<div class="caption">

</div>
</div>



<div class="product-2 product">
<div class="image">
<img src="slide-5.jpg" alt="Image 2"/>
</div>
<div class="caption">

</div>
</div>

<div id="clear"></div>

<div class="product-1 product">
<div class="image">
<img src="slide-6.jpg" alt="Image 3"/>
</div>
<div class="caption">

</div>
</div>

<div class="product-2 product">
<div class="image">
<img src="slide-5.jpg" alt="Image 4"/>
</div>
<div class="caption">

</div>
</div>

</div>
</body>
<script type="text/javascript" src="products.js"></script>
</html>

最佳答案

width.product-2因为 left: 50% 没有可见工作您分配给它的属性(property)。如果你删除它,然后分配一个 width.product-2会工作。

我添加了一个<div class="row">给你的每个部门,将它们清楚地分成一行。我分配了 float-right.product-2和 sample width200px所以你可以看到 width在职的。希望这能回答您的问题,祝您好运

body{
height: 100vh;
margin: 0px;
overflow: scroll;
}
.header{

background-color: white;
height:8%;
overflow: hidden;
font-style: "Roboto";
font-size: 25px;
border-bottom: 2px solid;
border-bottom-color: #cccccc;
}
#clear{
clear: both;
}
.logo{
margin-top: 12px;
float: left;
left: 0px;
padding-right: 50px;
}
#logo:hover{
background: transparent;
}
.links{
display: block;
float: right;
margin-right: 10px;
margin-top: 10px;
}
a{
position: relative;
right: 0px;
/*top: 25px;*/

padding-left: 10px;
padding-right: 10px;

color:black;
letter-spacing: 2px;
font-weight: 200;
text-decoration: none;
}
a:hover{
background-color:#cccccc;
}

.content{
display: block;
background-color: white;
height: 92%;
margin-top: 0px;

}

#clear{
clear: both;
}

.image{
display: block;
width: 200px;
height: 200px;
border-style: dashed;
border-color: red;
border-width: 2px;
overflow: hidden;
}

.product-1{
display: block;
position: relative;

padding-left: 10%;
padding-right: 10%;

margin-top: 5%;

float: left;
left: 0px;
width: 175px; /* sample width */
overflow: hidden;

border-style: solid;
border-color: black;
border-width: 1px;
}

.product-2{
display: block;
position: relative;

padding-left: 10%;
padding-right: 10%;

margin-top: 5%;
float: right;
width: 175px; /* sample width */
overflow: hidden;

border-style: solid;
border-color: black;
border-width: 1px;
}
<body>
<div class="header">
<div class="logo">
<a href="home.html"><img id="logo"src="logo.png" alt="LOGO"></a>
</div>
<div class="links">
<a href="home.html">Home</a>
<a href="products.html">Products</a>
<a href="login.html">Login</a>
<a href="register.html">Register</a>
<a href="home.html">Contact</a>
<a href="home.html">About</a>
</div>
</div>
<div class="content">
<div class="row">
<div class="product-1 product">
<div class="image">
<img src="slide-4.jpg" alt="Image 1" />
</div>
<div class="caption">

</div>
</div>



<div class="product-2 product">
<div class="image">
<img src="slide-5.jpg" alt="Image 2"/>
</div>
<div class="caption">

</div>
</div>
</div>

<div id="clear"></div>

<div class="row">
<div class="product-1 product">
<div class="image">
<img src="slide-6.jpg" alt="Image 3"/>
</div>
<div class="caption">

</div>
</div>

<div class="product-2 product">
<div class="image">
<img src="slide-5.jpg" alt="Image 4"/>
</div>
<div class="caption">

</div>
</div>
</div>

</div>
</body>

关于html - CSS:宽度属性不适用于 div 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51917270/

26 4 0