前段时间更新了获取时间和遮罩层等相关知识点的代码,今天我们来写一下如何制作表单元素。
一、制作表单元素跳转
在这里的话我们引用的是百度的网站,只用到了HTML、CSS。
HTML代码:
<form action="https://www.baidu.com/s" method="get">
<input type="text" name="wd">
<button type="submit">百度一下</button>
</form>
公用样式:
*{
margin: 0;
padding: 0;
}
body{
font-family: Arial, Verdana, "Microsoft yahei", "Pingfang SC", Simsun;
}
ul,li,ol{
list-style: none;
}
.clears{
clear: both;
height: 0;
overflow: hidden;
font-size: 0;
line-height: 0;
}
a{
text-decoration: none;
}
table{
border-collapse: collapse;
}
button{
cursor: pointer;
}
input, button, textarea, select{
outline:none;
}
textarea{
resize: none;
}
标签:none,font,button,元素,height,HTML,表单,制作 From: https://blog.csdn.net/2301_76282269/article/details/144076770