要在HTML中并排放置两个投票项目,可以使用HTML和CSS来实现。以下是一个简单的示例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>投票项目</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="vote-container">
<div class="vote-item">
<h3>投票项目1</h3>
<button>投票</button>
</div>
<div class="vote-item">
<h3>投票项目2</h3>
<button>投票</button>
</div>
</div>
</body>
</html>
body {
font-family: Arial, sans-serif;
}
.vote-container {
display: flex;
justify-content: space-around;
align-items: center;
height: 100vh;
}
.vote-item {
text-align: center;
border: 1px solid #ccc;
padding: 20px;
border-radius: 10px;
width: 30%;
}
<!DOCTYPE html>
:声明文档类型为HTML5。<html lang="en">
:设置网页语言为英语。<head>
:包含元数据和外部资源链接。<meta charset="UTF-8">
:设置字符编码为UTF-8。<meta name="viewport" content="width=device-width, initial-scale=1.0">
:设置视口,使页面适应不同设备。<title>
:设置网页标题。<link rel="stylesheet" href="styles.css">
:链接外部CSS文件。<body>
:包含网页的主体内容。<div class="vote-container">
:包含两个投票项目的容器。<div class="vote-item">
:每个投票项目的容器。<h3>
:投票项目的标题。<button>
:投票按钮。body
:设置字体和背景。.vote-container
:使用display: flex
来并排放置子元素,并使用justify-content: space-around
和align-items: center
来居中对齐。.vote-item
:设置每个投票项目的样式,包括边框、内边距和圆角。这种布局适用于需要在网页上并排放置多个投票项目的场景,例如在线调查、用户投票活动等。
通过这种方式,你可以轻松地在网页上并排放置多个投票项目,并且可以根据需要进一步自定义样式和功能。
领取专属 10元无门槛券
手把手带您无忧上云