Put <a> at bottom of parent element <p>

owensrail

New Member
I believe this is a simple fix but so far I can't find it.(Consider the screenshots below)I have a \[code\]<a class="addcomment">\[/code\] within a \[code\]<p>\[/code\] and I simply want the \[code\]<a>\[/code\] to always be on the bottom left of the \[code\]<p>\[/code\], no matter its height.Using\[code\]position: relative; left: 0px; bottom: 0px;\[/code\] doesn't do the job even though I am sure that the \[code\]<p>\[/code\] is the parent of the \[code\]<a>\[/code\].This is the current CSS styling for the element:\[code\]a.addcomment:link,a.addcomment:visited { text-decoration: none; border-bottom: 1px dotted #820106; color: #820106;}a.addcomment:hover,a.addcomment:active { text-decoration: none; border-bottom: none; color: #820106;}\[/code\]this looks good because the a tag is at the bottom anywaysthis does not because the a tag is not at the bottom where I want itThank you for knowledge and suggestions in advance
 
Back
Top