效果图
关键代码:
圆角边框的实现
border-radius: 10px 0px 0px 10px;
四个位子依次是,左上,右上,右下,左下,具体的数值可以根据百度源代码来实现。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
a{
text-decoration: none;
color: #222;
font: 13px/23px Arial,sans-serif;
}
#btn-set{
background-color: blue;
color: #fff;
border-radius: 5px;
}
#logo{
text-align: center;
}
#search-text{
width: 600px;
height: 30px;
border-radius: 10px 0px 0px 10px;
}
#search-btn{
width: 100px;
height: 36px;
background-color: #4e6ef2;
color: #fff;
font-size: 18px;
border-radius: 0px 10px 10px 0px;
}
</st