Answers for "why bottom not working css"

CSS
1

bottom css don't work for p

p {
  position: absolute;
  top: 10%;
  color: red;
}
Posted by: Guest on July-23-2020
0

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;
 }
Posted by: Guest on January-22-2021

Code answers related to "why bottom not working css"

Browse Popular Code Answers by Language