0

围绕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 宽的线吗?

谢谢

4

2 回答 2

0

您必须设置颜色和样式

 <div  align="center" style="max-width:380px; border:2px solid red;">
于 2012-09-28T10:27:31.963 回答
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

于 2012-09-28T10:48:11.063 回答