css - Aligning HTML special charaters bottom relative to parent -
css - Aligning HTML special charaters bottom relative to parent -
so i'm building website client in wordpress , design has square total stops on few headings font have used has round total stops.
i have solved issue shortcode '[stop]' , homecoming next code:
<span class="square-stop">■</span>
this html square symbol ■ wrapped in span styling.
but can seem align bottom text. see illustration here: http://jsfiddle.net/9a8x844n/
<h1>this heading of kind<span class="square-stop">■</span></h1>
use next css align square:
h1{ position:relative; } .square-stop { font-size: 0.7em; position: absolute; bottom: 0; }
html css special-characters vertical-alignment symbols
Comments
Post a Comment