what is upper limit for width in html tag ...
i am using canvas where i need to have maximum width for parent to render content dynamically
.layout{
width: 10000;//is it a valid value for width
}
Is there any upper limit for width value
what is upper limit for width in html tag ...
i am using canvas where i need to have maximum width for parent to render content dynamically
.layout{
width: 10000;//is it a valid value for width
}
Is there any upper limit for width value
I guess it depends on browser. Just give it a very big value and then inspect in dev-tools. My chrome gives 37282700 pixels for an element with style="width: 999999999999999999999px;"
Use this in your CSS
tagName{
width: 100%;
}
this property always set your width of selected tag to maximum-width, works on all screen sizes