首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >如何从输入按钮中删除轮廓边框?

如何从输入按钮中删除轮廓边框?

提问于 2018-04-18 01:12:59
回答 2关注 0查看 141

代码:

代码语言:javascript
复制
<head>
<style>
input[type="text"]
{
width:150px;
display:block;
margin-bottom:10px;
background-color:yellow;
}
input[type="button"]
{

width:120px;

height:60px;
margin-left:35px;
display:block;
background-color:gray;
color:white;
border: none;

}
</style>
</head>
<body>

<form name="input" action="" method="get">
Firstname:<input type="text" name="Name" value="Peter" size="20">
Lastname:<input type="text" name="Name" value="Griffin" size="20">
<input type="button" value="Example Button">

</form>
</body>
</html>

回答

和开发者交流更多问题细节吧,去 写回答
相关文章

相似问题

相关问答用户
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档