and tag?-伪装坚强ぢ的回答
and tag? 前端 未结 关注 6 1110 小蘑菇 2021-02-01 02:57 I have been trying to implement margin-top for a link button but it doesn\'t work at all. I have also tried inline styles for both \'p\' and \'a\' tag. There are 3 li el
I have been trying to implement margin-top for a link button but it doesn\'t work at all. I have also tried inline styles for both \'p\' and \'a\' tag.
There are 3 li el
You won't be able to set a margin on an tag without first setting it to display:block;.
display:block;
In your case, you need to do something like this:
#services ul li p { padding: 8px; margin-top: 10px;}