宽度为100%的HTML输入文本框溢出表单元格
有谁知道为什么宽度为100%的输入元素越过表格的单元格边框。 在下面的简单示例中,输入框超过了表格的单元格边框,结果令人震惊。经过测试,并且在Firefox,IE7和Safari上以相同的方式发生。 这对您有意义吗?我是否缺少某些内容,您知道可能的解决方案吗? <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <!-- don't use closing slash in meta tag, it breaks HTML4.01 transitional --> <title>Test input text in table</title> <style type="text/css"> table {border-top: 1px solid #ff0000; border-left: 1px solid #ff0000;} table td {border-right: 1px solid …