Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Ich sehe da kein <span>.ich habe ca. 10 <span>
Tatsächlich? Was ist denn der Fehler?jetzt gibt es aber leider darstellungs fehler.
<div class="categories">
<span class="cat">
<a class="catl" href="?alliance_forum&id=6">
This is a very long categorie</a>
</span>
<span class="cat">
<a class="catl" href="?alliance_forum&id=8">
Test 3 </a>
</span>
<span class="cat">
<a class="catl" href="?alliance_forum&id=1">
a long categorie name </a>
</span>
<span class="cat">
<a class="catl" href="?alliance_forum&id=5">
HIHO </a>
</span>
<span class="cat">
<a class="catl" href="?alliance_forum&id=3">
a long categorie name 2 </a>
</span>
<span class="cat">
<a class="catl" href="?alliance_forum&id=2">
TEST </a>
</span>
<span class="cat">
<a class="catl" href="?alliance_forum&id=7">
This is a very long categorie, too xD </a>
</span>
<span class="cat">
<a class="catl" href="?alliance_forum&id=9">
Categorie 9 </a>
</span>
<span class="cat">
<a class="catl" href="?alliance_forum&id=10">
Und noch eine Kategorie auf deutsch, diese ist die längste von allen... </a>
</span>
<span class="cat">
<a class="catl" href="?alliance_forum&id=4">
TEST 2 </a>
</span>
</div>
a.catl {
color:#2E2E2E;
font-weight:bold;
text-decoration:none;
}
a.catl:hover {
color:#999999;
}
.cat {
border:1px solid #cccccc;
padding:5px;
background:#f3f3f3;
margin-left:3px;
margin-right:3px;
}
.categories {
text-align:center;
}
Genau da liegt das Problem. Ohne Quellcode können wir hier nur raten..das <span> ist im quellcode
Doch, natürlich. Und wie möchtest du es nun haben?und haste den screenshot ned angesehn?
a.catl {
color:#2E2E2E;
font-weight:bold;
text-decoration:none;
}
a.catl:hover {
color:#999999;
}
.cat {
display: block;
border:1px solid #cccccc;
padding:5px;
background:#f3f3f3;
margin-left:3px;
margin-right:3px;
width: auto;
float: left;
margin-top: 3px;
margin-bottom: 3px;
}
.categories {
text-align:center;
}
Ich habe ein display: block; eingebaut (verhindert den Zeilenumbruch), sowie gefloatet und Aussenabstände gesetzt.
Gruß