I need to change box-sizing from border-box to content-box for a particular element.
Does anyone know how to do this?
Thanks.
I need to change box-sizing from border-box to content-box for a particular element.
Does anyone know how to do this?
Thanks.
just add an embed element and paste this
<style> .YourElementClass { box-sizing: content-box; } </style>
Once again, you did it. ![]()
Thanks.