Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
/* To make images responsive */
.res-img img {
	max-width:100%;
	height:auto;
}


Linking within a Page - Anchor


Define the anchor

Code Block
<div id="NameOfAnchorHere">optional text</div>


Reference the anchor

Code Block
[[#NameOfAnchorHere| test]]


If the div causes a line break you may want to use:

Code Block
<div id="NameOfAnchorHere" style="display:inline;"></div>



References