Margin Auto Not Working Code Example


Example 1: margin-top not working


.form_head {
margin-top: 20px;
color:#58585a;
font-size:22px;
display:block; /* Add this */
}

Example 2: margin bottom not working


// Your problem is that link ("a") is an INLINE element and you cannot set margin to inlines elements. In order to make it work, you have to declare it as BLOCK element, by adding:

a
{
display: block;
}

Comments

Popular posts from this blog

Android - ImageView With Rounded Only One Corner

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

403 Access Denied On Tomcat 8 Manager App Without Prompting For User/password