1. ホーム
  2. Web制作
  3. HTML/Xhtml

htmlのテキスト回り込みの例(html mixed text)

2022-01-15 22:21:12

 1. テキストラップアラウンドイメージ

通常の場合、例えば

コピーコード
コードは以下の通りです。

<TABLE cellpadding="15" width="200">
<TR>
<TD bgcolor="#EEEEFF"><IMG src="test.gif" hight=60> Here is the common one. Among the domestic VB websites vbgood is popular among program lovers for its daily updates and abundant amount of information. </TD>
</TR>
</TABLE>

このような文で画像の高さが本文より高いと、本文の上に空白ができます。ページの見栄えが非常に悪くなります。どうすれば直るのでしょうか?このコードを考えてみましょう。

コピーコード
コードは以下の通りです。

<TABLE cellpadding="15" width="200">
<TR>
<TD bgcolor="#EEEEFF"><IMG src="test.gif" hspace="1" align="LEFT" hight=60> Here is the bypass row. The domestic VB website vbgood is loved by program lovers for its daily updates and rich amount of information. </TD>
</TR>
</TABLE>

imgという要素にalign="center"という属性を追加すれば、問題は解決するのです。簡単でしょう?hspaceに関しては、画像とその周囲の要素の幅を定義します。行を回り込むかどうかとは関係ありません。

これはどうやって作られたのでしょうか?まず、このコードを見てください。

コピーコード
コードは以下の通りです。

<table align=left cellspacing=0 cellpadding=0 width=200 border=1>
<tr>
<td><table align=left cellspacing=0 cellpadding=0><font color=red size="5"><b>in</b></font> ; </table>The domestic VB website vbgood is updated daily with abundant information, and is liked by program lovers. (End)</td></tr>
</table>

また、この効果はどのようにして得られるのでしょうか?
コピーコード
コードは以下の通りです。

<table align=left cellspacing=0 cellpadding=0 width=200 border=1>
<tr>
<td><table align=left cellspacing=0 cellpadding=0><font color=red size="5"><b>in</b></font> ;
</table> Among the domestic VB sites vbgood is popular among programmers for its daily updates and rich amount of information. (End)</td></tr>
</table>

このコードがすべてを語っている。賢い人は一目でわかるだろう。拡大したい言葉をこの表に入れるだけでいい。

しかし、今度はテキストに背景色をつけたい場合、どうすればいいのでしょうか?そうだ、あなたは賢い、bgcolor属性をテーブルに追加すればいい。

コピーコード
コードは以下の通りです。

<table align=left cellspacing=0 cellpadding=0 width=200 border=1>
<tr>
<td><table align=left cellspacing=0 cellpadding=0 bgcolor=#C0C0C0><font color=red size="5"><b>In</b& gt;</font></table>The domestic VB website vbgood is updated daily with abundant information, and is liked by program lovers. (End)</td></tr></table>

しかし、それは出てくることができますか?はいできない、それを加える何かがある(そうすぐに答えないために次を覚えなさいああ:)、そうそれ。
コピーコード
コードは以下の通りです。

<table align=left cellspacing=0 cellpadding=0 width=200 border=1>
<tr>
<td><table align=left cellspacing=0 cellpadding=0 bgcolor=#C0C0C0><td><font color=red size="5"><b& gt;In</b></font></td></table>domestic VB website vbgood is loved by program lovers for its daily update and rich amount of information. (End)</td></tr></table>