gpt4 book ai didi

html - 为什么照片排列成列而不是网格(HTML + CSS)?

转载 作者:太空宇宙 更新时间:2023-11-04 09:51:42 28 4
gpt4 key购买 nike

好的,我正在学习有关制作简单投资组合网站的 Treehouse 教程。他们有应该排列在网格中的照片。我正在使用视频,但我尝试切换为图片,但没有任何区别。我的照片仍然在左边的一列中,然后页脚在右边一些照片应该在的地方。我想我会错过某种结束标签或其他东西,但我找不到它。你介意看看吗?谢谢。

HTML:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Carter Goff | Portfolio</title>
<link rel="stylesheet" href="css/normalize.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700|Oswald:300,400,700' rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<a href="index.html" id = "logo">
<h1>Carter Goff</h1>
<h2>Choreographer</h2>
</a>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html" class="selected">Portfolio</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div id="wrapper">
<section>
<ul id = "gallery">
<li>
<a href="vid/vid1.mp4">
<video controls>
<source src="vid/vid1.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</a>
<a href="vid/vid1.mp4">
<video controls>
<source src="vid/vid1.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</a>
</li>
</ul>
</section>
<footer>
<a href="http://instagram.com/cartergoffofficial"><img src="img/instagram.png" alt="Instagram Logo"></a>
<a href="https://www.facebook.com/carter.goff.52"><img src="img/facebook.png" alt ="Facebook Logo"></a>
<p>&copy; 2016 Carter Goff</p>
</footer>
</div>
</body>
</html>

和 CSS:

/************************
GENERAL
*************************/

body {
font-family: 'Open Sans Condensed', sans-serif;
}

#wrapper {
max-width: 940px;
margin: 0 auto;
padding: 0 5%;
}

a {
text-decoration: none;
}

video{
max-width: 100%;
}



/************************
HEADING
************************/

#logo {
text-align: center;
margin: 0;
}

h1 {
font-family: 'Oswald', sans-serif;
margin: 15px 0;
font-size: 2em;
font-weight: normal;
line-height: 0.8em;
}

h2 {
font-size: 0.75em;
margin: -5px 0 0;
font-weight: normal;
}



/************************
NAVIGATION
************************/

nav {
text-align: center;
padding: 10px 0;
margin: 20px 0 0;
}



/************************
FOOTER
************************/

footer {
font-size: 0.75em;
text-align: center;
clear: both;
padding-top: 50px;
color: #ccc;
}



/************************
PAGE: PORTFOLIO
************************/

#gallery {
margin: 0;
padding: 0;
list-style: none;
}

#gallery li {
float: left;
width: 45%;
margin: 2.5%;
background-color: #f5f5f5;
color: #bdc3c7;
}

#gallery li a p {
margin: 0;
padding: 5%;
font-size: 0.75em;
color: #bdc3c7
}


/************************
COLORS
************************/

/* site body */
body{
background-color: #fff;
color: #b3b3b3;
}

/* pink header */
header{
border-color: #ffb3ff;
background: #000000;
}

/* nav background on mobile */
nav{
background: #ffb3ff;
}

/* logo text */
h1, h2 {
color: #fff;
}

/* links */
a {
color: #00ffb3;
}

/* nav links */
nav a, nav a:visited {
color: #000;
}

/* selected nav link */
nav a.selected, nav a:hover {
color: #b300b3
}

最佳答案

你有一个 li 里面有两个视频,但是通过查看 css 我看到你有 li {float: left;宽度:45%; margin: 2,5%} 并且只有超过一里时才有意义,所以我假设您想要两个 li,每个都有一个视频。如果我将您的 HTML 更改为我刚才说的结构,您的 css 可以完美运行:

/************************
GENERAL
*************************/

body {
font-family: 'Open Sans Condensed', sans-serif;
}

#wrapper {
max-width: 940px;
margin: 0 auto;
padding: 0 5%;
}

a {
text-decoration: none;
}

video{
max-width: 100%;
}



/************************
HEADING
************************/

#logo {
text-align: center;
margin: 0;
}

h1 {
font-family: 'Oswald', sans-serif;
margin: 15px 0;
font-size: 2em;
font-weight: normal;
line-height: 0.8em;
}

h2 {
font-size: 0.75em;
margin: -5px 0 0;
font-weight: normal;
}



/************************
NAVIGATION
************************/

nav {
text-align: center;
padding: 10px 0;
margin: 20px 0 0;
}



/************************
FOOTER
************************/

footer {
font-size: 0.75em;
text-align: center;
clear: both;
padding-top: 50px;
color: #ccc;
}



/************************
PAGE: PORTFOLIO
************************/

#gallery {
margin: 0;
padding: 0;
list-style: none;
overflow: hidden;
}

#gallery li {
float: left;
width: 45%;
margin: 2.5%;
background-color: #f5f5f5;
color: #bdc3c7;
}

#gallery li a p {
margin: 0;
padding: 5%;
font-size: 0.75em;
color: #bdc3c7
}


/************************
COLORS
************************/

/* site body */
body{
background-color: #fff;
color: #b3b3b3;
}

/* pink header */
header{
border-color: #ffb3ff;
background: #000000;
}

/* nav background on mobile */
nav{
background: #ffb3ff;
}

/* logo text */
h1, h2 {
color: #fff;
}

/* links */
a {
color: #00ffb3;
}

/* nav links */
nav a, nav a:visited {
color: #000;
}

/* selected nav link */
nav a.selected, nav a:hover {
color: #b300b3
}
    <header>
<a href="index.html" id = "logo">
<h1>Carter Goff</h1>
<h2>Choreographer</h2>
</a>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html" class="selected">Portfolio</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div id="wrapper">
<section>
<ul id = "gallery">
<li>
<a href="vid/vid1.mp4">
<video controls>
<source src="vid/vid1.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</a>
</li>
<li>
<a href="vid/vid1.mp4">
<video controls>
<source src="vid/vid1.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</a>
</li>
</ul>
</section>
<footer>
<a href="http://instagram.com/cartergoffofficial"><img src="img/instagram.png" alt="Instagram Logo"></a>
<a href="https://www.facebook.com/carter.goff.52"><img src="img/facebook.png" alt ="Facebook Logo"></a>
<p>&copy; 2016 Carter Goff</p>
</footer>
</div>

PS:我冒昧地将 overflow: hidden; 添加到 #gallery 以清除 float 。

PS2:我通过 w3c 验证程序运行您的代码以检查是否缺少关闭选项卡。这是一个很好的工具,帮助很大,习惯使用它:https://validator.w3.org/#validate_by_input .它还提供建议,例如您的 section 缺少标题。

关于html - 为什么照片排列成列而不是网格(HTML + CSS)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39040417/

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