Log in

View Full Version : need help bolding a character



minidoggy
02-28-2009, 09:03 PM
I'm having a problem making the plus sign really bold. I need some help.




p {
width:17px;
height:19px;
padding:5px;
text-align: center;

border:1px solid #000;

font-size: 17px;


background-color:#darkslateblue }



//the plus that is going to become bold.

<p>+</p>

Snookerman
02-28-2009, 09:38 PM
Use font-weight: bold;

Good luck!

jscheuer1
02-28-2009, 09:42 PM
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
.boldplus {
width: 1.05em;
height: 1.18em;
padding: 0.31em;
text-align: center;
border: 0.125ex solid #000;
font: bold 110% sans-serif;
background-color: #483d8b;
color: #ddd;
}
</style>
</head>
<body>
<div class="boldplus">+</div>
</body>
</html>