刚刚开始学习 bootstrap ,我看到人家条件查询的表单是这样写的:
<form class='form-search'> <input class="input-medium search-query" type='text' /> <button class='btn' type='submit'> 查找</button> </form>
<link rel="stylesheet" href="http://cdn.bootcss.com/twitter-bootstrap/3.0.3/css/bootstrap.min.css"><script src="http://cdn.bootcss.com/jquery/1.10.2/jquery.min.js"></script><script src="http://cdn.bootcss.com/twitter-bootstrap/3.0.3/js/bootstrap.min.js"></script>
也许class加上,仅仅是为了方便标记,找到元素,做些特殊处理,而没有真正意义上对应的样式
如果真的有,那么你从哪里看到的,从人家的网站上通过开发者人员工具 定位一下 就能看到form-search 对应 的样式表是哪个,第几行都能看到
也许class加上,仅仅是为了方便标记,找到元素,做些特殊处理,而没有真正意义上对应的样式
如果真的有,那么你从哪里看到的,从人家的网站上通过开发者人员工具 定位一下 就能看到form-search 对应 的样式表是哪个,第几行都能看到
换成这个样式
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档</title><link rel="stylesheet" href="http://www.bootcss.com/p/layoutit/css/bootstrap-combined.min.css"><script src="http://cdn.bootcss.com/jquery/1.10.2/jquery.min.js"></script><script src="http://cdn.bootcss.com/twitter-bootstrap/3.0.3/js/bootstrap.min.js"></script></head><body> <form class='form-search'> <input class="input-medium search-query" type='text' /> <button class='btn' type='submit'> 查找</button> </form></body></html>
换成这个样式
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档</title><link rel="stylesheet" href="http://www.bootcss.com/p/layoutit/css/bootstrap-combined.min.css"><script src="http://cdn.bootcss.com/jquery/1.10.2/jquery.min.js"></script><script src="http://cdn.bootcss.com/twitter-bootstrap/3.0.3/js/bootstrap.min.js"></script></head><body> <form class='form-search'> <input class="input-medium search-query" type='text' /> <button class='btn' type='submit'> 查找</button> </form></body></html>