📜  html 在 div 中定位 div - Html 代码示例

📅  最后修改于: 2022-03-11 14:53:29.991000             🧑  作者: Mango

代码示例1
.textblock-container {
width: 500px;
height: 500px;
border: 1px solid red;
position: relative;
}

div.textblock {
width: 100px;
height: 100px;
line-height: 100px;
border: 1px solid black;
position: absolute;
text-align: center;             
background: rgb(0, 150, 0);
background: rgba(0, 150, 0, .5);
}