Link to home
Start Free TrialLog in
Avatar of trifecta2k
trifecta2k

asked on

Pure CSS way to control bottom-border position

What I would like to do is create a bottom-border immediately following my title. Right now I can create the bottom-border, but there seems to be some spacing between the title and the border.  I want the title to basically be sitting on the bottom-border.  I've attached my CSS..please help!  
span.title {
	font-weight:bold;
	font-size:26px;
	color:#9ab324;
	border-bottom: 3px solid #0f490f;
	font-family:Arial, Helvetica, sans-serif;
	position:relative;
	width:100%;
	display:block;
	margin-bottom:0px;
	padding-bottom:0px
}

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of djgerac
djgerac

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of trifecta2k
trifecta2k

ASKER

Thanks for the quick response.  That worked perfectly.