一个盒子里的html表格?

问题描述 投票:0回答:1

我想把一个表格放在一个盒子里面,或者在一个表格周围有一个边框,但我卡住了。背景必须是白色的,我在想,也许透明的选择还可以。那里的任何专家都有一些简单的想法如何解决它?附上一些代码。 Jsfiddle

What I want to accomplish

<body>
<div id="border"></div>
<div id="text">Auf dem tisch</div>
</body>

body {background: white;}

#border {
        border: 2px solid black;
        position: absolute;
        z-index: 1;
        width: 100px;
        height: 80px;
        margin-center: 0;
        padding: 15px;
        border-radius: 1px;
        background: navy;
        opacity: 0.2;
    }

#text   {
        margin-center: 0;
        z-index: 2;
        color: black;
        font-weight: bold;
    }
html5 forms textbox border
1个回答
2
投票
    <div class="box">
<form>
..
..
</form>
</div>

// css style to make border in center of the form

.box{
margin:0 auto; 
width:600px //you can set it in %.
padding:20px;
background:#f9f9f9;
border:2px solid #333;
}
© www.soinside.com 2019 - 2024. All rights reserved.