Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

margin for text in html

p {
  /*If you want to apply margin for all four sides with the same amount*/
  margin: 100px;
  /*Margin from top*/
  margin-top: 100px;
  /*Margin from bottom*/
  margin-bottom: 100px;
  /*Margin from right*/
  margin-right: 150px;
  /*Margin from left*/
  margin-left: 80px;
}
 
PREVIOUS NEXT
Tagged: #margin #text #html
ADD COMMENT
Topic
Name
2+2 =