需要准备的材料分别有:电脑、浏览器、html编辑器。
1、首先,打开html编辑器,新建html文件,例如:index.html。
2、在index.html中的<style>标签中,输入css代码:button {background-color: #00a7d0}
button:hover {background-color: #ff7701}。
3、浏览器运行index.html页面,此时显示出了蓝色背景颜色的按钮。
4、将鼠标移入按钮,此时按钮的背景颜色变成了橙色。
给你个例子,用onmousemove和nmouseout。具体css颜色等自己改一下。
<style>
.input_out{width:60pxheight:30pxborder:1pxsolid#CCCbackground-color:#FFF}
.input_move{width:60pxheight:30pxborder:1pxsolid#CCCbackground-color:#FFFFCC}
</style><inputtype="button"class="input_out"onmousemove="this.className='input_move'"onmouseout="this.className='input_out'"value="提交"/>
涉及到input里的文字的标签大致有两种——文本框和按钮,即:
这两种input标签属于“行内块元素”,它既按照块元素显示外观,又按照行内元素排列,所以想调整其内部的文字位置可按照块元素的方法来。下面是示例(仅以button为例,text同理):
文字左右对齐,可使用text-align属性来控制,例如:
文字上下对齐,可使用padding-top和padding-bottom来精确控制,例如文字靠下。