设置按钮html代码怎么写

1.怎么用html代码写按钮改变项目属性<head>
<meta ; charset=gb2312" />
<title>;用css写按钮改变项目属性</title>
<style type="text/css">
<!--
.btn{margin: 0px; width:100px; height:30px; overflow:hidden; border:1px solid #999; color:#fff; background:#000}
-->
</style>
</head>
<body>
<input name="" type="button" value="http://www.xuexi88.com/zhishi/按钮" class="btn" />
</body>
在input里调用btn这个自定义css,width:长度 , height:高度 , border:边框 , color:按键文字颜色 , background:背景颜色 。
2.HTML 如何实现自定义按钮给按钮写样式就行啊 。以下代码仅供参考 。
<input type="button" value="http://www.xuexi88.com/zhishi/这是一个按钮" class="btn">
<style type="text/css">
.btn{width:120px;padding:0;cursor:pointer;display:inline-block;text-align:center;border:1px solid transparent;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;height:30px;line-height:30px;font-family:"Microsoft Yahei";font-size:15px;padding:0 15px;border-color:#45ad00;background:#45ad00;color:#fff;}
</style>
3.html js button 按钮怎么写事件代码<!DOCTYPE html>
<html lang="en" charset='utf-8'>
<style>
.d3 form {
background: #E5E5E5;
position: relative;
margin: 0 auto;
}
.d3 input, .d3 button {
border: none;
outline: none;
background: transparent;
}
.d3 input {
width: 100%;
height:35px;
padding-left: 15px;
font-size:13px;
font-family:微软雅黑;
}
.d3 button {
height: 35px;
width: 35px;
position: absolute;
top: 0;
right: 0;
cursor: pointer;
}
.d3 button:before {
font-size: 13px;
}
</style>
<div class="d3">
<form>
<input type="text" id='serchbox' placeholder="发帖求助前要善用【搜索】功能 , 这里可能会有你要找的答案 。">
<button id="search-btn" onclick="serch();" type="submit"/><img src="http://www.xuexi88.com/zhishi/so.png" height="19" width="18" alt="搜索" /></button>
</form>
</div>
<script>
function serch(){
var value = http://www.xuexi88.com/zhishi/document.getElementById('serchbox').value;
window.open('a/'+value);
}
</script>
【设置按钮html代码怎么写】</body>
</html>
4.帮忙写个HTML网页按钮代码<!doctype html>
<meta charset="utf-8"/>
<html>
<head>
<style type="text/css">
html,body{
height:100%;
margin:0;
background: #EEEEEE;
position:relative;
}
button {
position: absolute;
top:50%;
left:50%;
width: 400px;
height: 100px;
margin:-50px -200px;
background: #ffffff;
font:72px "Microsoft YaHei";
color:blue;
}
button:hover{
background:#eeeeff;
}
</style>
</head>
<body>
<button onclick="location.href='http://www.xuexi88.com/zhishi/#someplace'">;进入BBS</button>
</body>
</html>
代码如上 , 兼容直到IE6
5.网页代码编写,添加编辑框和按钮的代码怎么写<textarea></textarea>;用来创建一个可以输入多行的文本框 , 此标志对用于<form></form>;标志对之间 。<textarea>;具有以下属性:
(1)onchange指定控件改变时要调用的函数
(2)onfocus当控件接受焦点时要执行的函数
(3)onblur当控件失去焦点时要执行的函数