DOCTYPE引起的一系列问题-->Select样式,文本框样式width100%超过父容器
一言难尽...各种纠结...
环境:IE8
当不写DOCTYPE或者DOCTYPE为<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">之类的
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html> <head> </head> <body> <select> <option>选项...</option> </select> <br><br> <div style="width:200px;background-color: green;"> </div> <div style="width:200px;background-color: red;"> <input type='text' style='width:100%;'> </div> </body></html>
<!DOCTYPE HTML><html> <head> </head> <body> <select> <option>选项...</option> </select> <br><br> <div style="width:200px;background-color: green;"> </div> <div style="width:200px;background-color: red;"> <input type='text' style='width:100%;'> </div> </body></html>