了解如何使用 CSS 创建电子邮件通讯。
Lorem ipsum 文本介绍了为什么您应该订阅我们的时事通讯 blabla。 Lorem ipsum 文本介绍了为什么您应该订阅我们的时事通讯 blabla。 Lorem ipsum 文本介绍了为什么您应该订阅我们的时事通讯 blabla。
使用 <form> 元素来处理输入。您可以在我们的网站中了解更多相关信息PHP教程。然后为每个字段添加输入以及 "submit" 按钮:
<form action="action_page.html">
<div class="container">
<h2>Subscribe to our Newsletter</h2>
<p>Lorem ipsum..</p>
</div>
<div class="container" style="background-color:white">
<input type="text" placeholder="Name" name="name" required>
<input type="text" placeholder="Email address" name="mail" required>
<label>
<input type="checkbox" checked="checked" name="subscribe"> Daily Newsletter
</label>
</div>
<div class="container">
<input type="submit" value="Subscribe">
</div>
</form>
/* Style the form element with a border around it */
form {
border: 4px solid #f1f1f1;
}
/* Add some padding and a grey background color to containers */
.container {
padding: 20px;
background-color: #f1f1f1;
}
/* Style the input elements and the submit button */
input[type=text], input[type=submit] {
width: 100%;
padding: 12px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
box-sizing: border-box;
}
/* Add margins to the checkbox */
input[type=checkbox] {
margin-top: 16px;
}
/* Style the submit button */
input[type=submit] {
background-color: #04AA6D;
color: white;
border: none;
}
input[type=submit]:hover {
opacity: 0.8;
}
亲自试一试 »
提示:去我们的HTML 表单教程了解有关 HTML 表单的更多信息。
提示:去我们的CSS 表单教程了解有关如何设置表单元素样式的更多信息。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!