Answers for "css make div not full width"

CSS
5

make div the size of the text inside

div {
display: inline-block;
}
Posted by: Guest on April-27-2020
-2

how do i make a div full width with css

.row-full{
 width: 100vw;
 position: relative;
 margin-left: -50vw;
 height: 100px;
 margin-top: 100px;
 left: 50%;
}
Posted by: Guest on April-20-2020
-1

css not full width

html, body {
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
}
Posted by: Guest on June-26-2021

Browse Popular Code Answers by Language