I have a page which uses a css file which has
html
{
width:100%;
}
However when that page in Iframe - it causes x-scroll.

But - If I remove the width attribute ( via chrome developer toolbar) OR set an invalid value like '' - it's getting fine :

Question :
Is it Ok to do this : ( in order to reset the value)
<head >
/*The original css file - I dont want to touch it*/
<link href="<%= ResolveUrl("~/Css/style.css") %>" rel="stylesheet" type="text/css" />
<style type="text/css">
html
{
width: '' !important;
}
</style>
p.s.
No js solutions please.