Rain Lover
07-17-2014, 08:39 PM
Does padding:initial have any advantage over padding:0? Example:
<style>
textarea {
padding: 0;
}
</style>
<textarea>Hello, world!</textarea>
If there's no difference whatsoever, then why is the initial keyword added to CSS3?
<style>
textarea {
padding: 0;
}
</style>
<textarea>Hello, world!</textarea>
If there's no difference whatsoever, then why is the initial keyword added to CSS3?