Answers for "how to set box into another box using html and css"

CSS
0

how to set box into another box using html and css

#first {
    width: 100px;
    height: 100px;
    background: red;
}
#first #second{
    width: 50%;
    height: 50%;
    background: green;
}
Posted by: Guest on May-29-2021

Browse Popular Code Answers by Language