浏览器的一些兼容问题(1)

来源:互联网 发布:php在线音乐网站源码 编辑:程序博客网 时间:2024/06/05 09:36

1 input需要清掉哪些默认样式,和兼容问题如何解决?

2 如何解决IE8一下的input框文字偏上问题?


<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Busy - 电商</title>
<style>


    /*
    任务:
    1 input需要清掉哪些默认样式,和兼容问题如何解决?
    2 如何解决IE8一下的input框文字偏上问题
     */
  input{
        backgroud:none;
        outline:none;
        border:0px;
    }

    .search_box{
        width:210px;
    }
    .search_input{
        height:30px;
        padding:0 5px;
        width:136px;
        border:2px solid #FF8C00;
        float:left;
        line-height:30px\9;
    }

/* \9 代表所有的IE浏览器*/ 
    .search_btn{
        width:60px;
        height:34px;
        color:#FFF;
        background-color:#FF8C00;
    }




</style>
</head>


<body>
    <div class="search_box">
        <input type="text" class="search_input">
        <input type="button" class="search_btn" value="搜索">
    </div>
</body>
</html>

0 0
原创粉丝点击