Difference between revisions of "Css classes"

From MyWiki
Jump to: navigation, search
Line 10: Line 10:
  
 
.gap-below{
 
.gap-below{
           margin-below: 25px;
+
           margin-below: 25px;   # put in "<p" tag
 
}
 
}
  
  
 
</source>
 
</source>

Revision as of 18:06, 17 November 2015

class = "indent" in "<a" tag

.indent{
       margin-left: 10px;
 
}
 
<span class="ident">asdfasdf</span>  # To make indent first line of paragraph
 
 
.gap-below{
           margin-below: 25px;   # put in "<p" tag
}