• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

LI Lücke?!

Basti225

Neues Mitglied
Hey,
habe ein Tabelle erstellt.
Nun ist dort aber (links) eine Lücke, die ich nicht wegbekomme?!
Kann mir jmd. sagen warum und wie ich sie wegbekomme?

CSS
Code:
#twitter_div {
	background-color: #f7f7f7;
    border: 1px solid #cecece;
	font-family:Verdana;
	font-size:13px;
	padding-right: 5px;

}
 
#twitter_div ul li {
	color: #8a748a;
	padding:15px;
    border-bottom: 1px solid #cecece;
	list-style-type:none;
}
 
#twitter_div ul li a {
	text-decoration: none;
	color: #eb1fb4;
}
 
#twitter_div ul li a:hover {
	text-decoration: none;
	color: #6f6f6f;
}
 
#twitter_div p {
	text-align: right;
	padding-right: 6px;
	padding-bottom: 10px;

}

HTML
Code:
<div id="twitter_div">
	<ul id="twitter_update_list">
		<li></li>
	</ul>
	<p><a href="http://twitter.com/tunetekweb" title="Follow me on Twitter" target="Twitter">Follow me on Twitter</a></p>
</div>
<script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script>
<script type="text/javascript" src="http://twitter.com/statuses/user_timeline/tunetekweb.json?callback=twitterCallback2&amp;count=5"></script>

PS: Ist für Twitter...
 
Werbung:
Hallo.

Tut mir leid aber ich kann in dem geposteten Code keine Tabelle erkennen.
Ich sehe dort nur eine sinnlose weil unnötige Liste.

Gruss
Elroy
 
PS: Ist für Twitter...

ACH NE. :-D

Universal mal alles auf Null
Code:
* { margin: 0px; padding: 0px; }

und dann noch den twitter_div um

Code:
#twitter_div { margin: 10px 15px 0px 15px; }

erweitern, damit du den Aussenabstand vom div-Container wider hergestellt hast. Wenn du diesen nich möchtest, einfach weglassen.

MFG devilseye
 
Werbung:
Zurück
Oben