html css help

Soldato
Joined
8 Jan 2007
Posts
3,317
Location
Cognac, France
I want to do a bullet pointed list which is in a div which has been assigned a css class but the <ul> isn't working as there are no bullet points being displayed. Here's the css

Code:
.splitleft {
background: #ffffff;
margin:auto;
width: 68%;
float: left;
overflow: hidden;
text-align: justify;
}

and here's the exert from the html

Code:
<div class="splitleft">

     <p><span class="style4">Education</span><br />
       <br />
     <b>1995-1998  Maitrise: Master's Degree in English Language, Literature and Civilisation.</b>  Poitiers University of Languages, Poitiers, France
     	<ul>
     		<li>English lexicology and phonetics</li>
     		<li>Translation: compared English and French Syntax</li>
     		<li>Psycholinguistics</li>
     	</ul>
     </p><br>

Any idea?
 
it was the
Code:
*{border:0;margin:0;padding:0;background:transparent;}
the padding:0; bit at the top of the css ...

Thanks for helping.

What's the browser in Mr_L's image please?
 
Back
Top Bottom