0

左に浮かんでいる画像で、テキストがうまく折り返されていますが、UlとLiが機能するときに問題が発生します。これを説明する方法がよくわからなかったので、ここに写真を示します。ここに画像の説明を入力してください

コード:

<div style="overflow:auto;">
<center>
<h2>Ultimath V. 1.6.1 Released</h2>
</center>
<img align="left" src="images/ultimath_quadratic_tablet_land.png">
<center>Many new features and updated features, such as:</center><br>
<ul margin-left="15px">
        <li>Changed Search function to no longer bring you to homepage if not activated</li>
        <li>Multiple UI Fixes and upgrades</li>
        <li>Tablet specific layouts! (example to left)</li>
        <li>All inputs now automatically accept numbers (no more fumbling with switching to number keyboard!)</li>
        <li>Major Step by Step revamp! All solvers are now MUCH more specific!</li>
</ul>
</div>
<br>
<hr>

前もって感謝します!

4

2 に答える 2

0

間違い:

<ul margin-left="15px">

正しい構文:

<ul style="margin-left: 15px">

また、画像を設定してみmargin-right: 15px;てください。

于 2012-05-27T01:38:41.843 に答える
0

の代わりにfloat: left、を使用する必要がありますdisplay:inline-block

ライブデモ

于 2012-05-27T01:42:20.863 に答える