22 lines
302 B
CSS
Executable file
22 lines
302 B
CSS
Executable file
#parent {
|
|
background: #99C0C3;
|
|
width: 160px;
|
|
height: 120px;
|
|
position: relative;
|
|
}
|
|
|
|
#child {
|
|
background: #FFDE99;
|
|
width: 50%;
|
|
height: 50%;
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
textarea {
|
|
height: 140px;
|
|
width: 300px;
|
|
display: block;
|
|
}
|