如何 - 联系部分
学习如何在网页上创建响应式的联系部分。
联系部分
亲自尝试 »创建联系部分
步骤 1) 添加 HTML
示例
<div class="container">
<div style="text-align:center">
<h2>联系我们</h2>
<p>来喝杯咖啡,或者给我们留言:</p>
</div>
<div class="row">
<div class="column">
<img src="/w3images/map.jpg" style="width:100%">
</div>
<div class="column">
<form action="/action_page.php">
<label for="fname">名字</label>
<input type="text" id="fname" name="firstname" placeholder="您的名字..">
<label for="lname">姓氏</label>
<input type="text" id="lname" name="lastname" placeholder="您的姓氏..">
<label for="country">国家</label>
<select id="country" name="country">
<option value="australia">澳大利亚</option>
<option value="canada">加拿大</option>
<option value="usa">美国</option>
</select>
<label for="subject">主题</label>
<textarea id="subject" name="subject" placeholder="写点东西.." style="height:170px"></textarea>
<input type="submit" value="提交">
</form>
</div>
</div>
</div>
步骤 2) 添加 CSS
示例
* {
box-sizing: border-box;
}
/* 样式输入 */
input[type=text], select, textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
}
input[type=submit] {
background-color: #04AA6D;
color: white;
padding: 12px 20px;
border: none;
cursor: pointer;
}
input[type=submit]:hover {
background-color: #45a049;
}
/* 样式容器/联系部分 */
.container {
border-radius: 5px;
background-color: #f2f2f2;
padding: 10px;
}
/* 创建两列,漂浮在彼此旁边 */
.column {
float: left;
width: 50%;
margin-top: 6px;
padding: 20px;
}
/* 清除列后的浮动 */
.row:after {
content: "";
display: table;
clear: both;
}
/* 响应式布局 - 当屏幕宽度小于 600 像素时,使两列堆叠在彼此之上,而不是并排 */
@media screen and (max-width: 600px) {
.column, input[type=submit] {
width: 100%;
margin-top: 0;
}
}
亲自尝试 »