私はスパンを含めてお互いの下に2つの段落を持っています。 上部スパンには「Auftrag 1-3」というテキストがあり、下位には「Download」があります。別のスパンより下のスパン
"Auftrag 1-3"の下に直接センタリングされた下部スパン(ダウンロード)が必要です。
今のところ中央のものだけが完全に中央に配置されていますので、上記のテキストを理解していない場合はhttp://beta.playlikelars.de/iv.phpをご覧ください。
#content1 p {
text-align: center;
font-family: "Montserrat", sans-serif;
font-weight: bold;
font-size: xx-large;
}
#content1 .top {
background: rgb(11, 81, 146);
margin-right: 15px;
padding: 15px;
color: white;
}
#content1 .bottom {
background: #d6d6d6;
padding: 15px;
margin-right: 15px;
color: white;
}
<div id="content1">
<p>
<span class="top">Auftrag 1</span>
<span class="top">Auftrag 2</span>
<span class="top">Auftrag 3</span>
</p>
<p>
<span class="bottom">Download</span>
<span class="bottom">Download</span>
<span class="bottom">Download</span>
</p>
</div>
あなたは ' Auftrag1
Auftrag2
ダウンロード'のようなコードを持っていない理由は、任意の理由は? – panther