围绕2个按钮创建线框的最简单方法是什么
<div align="center" style="max-width:380px; border:2px;">
<INPUT type="button" value="Find Missing Definitions" onclick="promptUser()">
<INPUT id="processDefinitionsButton" type="button" value="Process Missing Definitions" onclick="processDefinitions()">
</div>
我做错了什么?这不应该添加2px宽的线?
日Thnx
答案 0 :(得分:0)
您必须设置颜色和样式
<div align="center" style="max-width:380px; border:2px solid red;">
答案 1 :(得分:0)
使用此
<div align="center" style="max-width:380px; border:2px solid #ccc;">
<INPUT type="button" value="Find Missing Definitions" onclick="promptUser()">
<INPUT id="processDefinitionsButton" type="button" value="Process Missing Definitions" onclick="processDefinitions()">
</div>
边框代码类似于border: size type color