Sorry, forgot to add code. 🙂
Save the following code and the image found at the URL, and place it them both in the same folder. I'm trying to line up the HTML bullet points, with the ones found on the image. Problem is, it messes up on another browsers upon doing this. Why is this?
http://www.freewebs.com/ticstacs/Bullets.bmp
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
body
{
MARGIN: 18px;
PADDING: 0px;
}
#container
{
WIDTH: 727px;
HEIGHT: 409px;
BORDER: 4px solid rgb(0,0,0);
BACKGROUND: url(Bullets.bmp) no-repeat;
}
ul
{
TOP: 130px;
LEFT: 16px;
POSITION: relative;
FONT-FAMILY: arial;
FONT-SIZE: 75%;
}
</style>
</head>
<body>
<div id="container">
<ul id="bullets">
<li>Bullet Point One</li>
<li>Bullet Point Two</li>
<li>Bullet Point Three</li>
<li>Bullet Point Four</li>
</ul>
</div>
</body>
</html>