I have so many blocks with different sizing, padding and margin values. So I thought to create support CSS classes and combine as below;CSS\[code\].m-t-5 { margin-top: 5px; }.m-t-10 { margin-top: 10px; }.m-t-15 { margin-top: 15px; }p-10 { padding: 10px; }p-15 { padding: 15px; }.f-left { float: left; }.f-right { float: left; }\[/code\]HTML\[code\]<div class="m-t-5 p-20 f-left lined"></div><div class="p-10 m-0 f-right"></div>\[/code\]By using this all my class names are becoming big(I mean in length). So is this a good practice? please suggest me wether to continue this way or creating multiple CSS classes with its own properties.Regards.