Vertical margin and padding are not working in labels – Quick fix
When creating forms in web pages, we want to use labels with input fields. To style these label elements, I always tries to add padding and margin on top and bottom with other styles.
But in default, this margin property and padding property on bottom and top on these label elements have no roles in web pages!.
Basically label elements are inline elements and vertical margins and vertical padding will not have any effect on such inline elements.
If still we want to apply margin and padding on top and bottom, there is a quick fix.
First make these labels as inline-block elements and then apply these vertical padding and vertical margin property on it. That is enough.
label {
display:inline-block;
margin-top:5px;
}
Looking for a skilled developer? I'm currently available for freelance, contract, or full-time remote opportunities! Let's create something amazing together. Send me a quick message, and I'll respond within 24 hours!
Recent Posts
- SQL From Basics to Mastery — A Complete, Hands-On Guide
- WordPress Beginner Interview Questions
- Mastering Traits in PHP - The Complete Guide for Code Reuse and Modularity
- Understanding the Singleton Pattern and Using Traits to Achieve Singleton in WordPress Plugin Development
- REST API Methods Explained with Best Practices for Building Clean and Secure APIs
Your Questions / Comments
If you found this article interesting, found errors, or just want to discuss about it, please get in touch.