自動改行の仕組みは? | |||
文字編 | |
HTML講座テーマ別 |
☆改行を制御する - クイックガイド |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<table border="1" width="10"> <tr> <td>せまいんですけど</td> </tr> </table> <table border="1" width="10"> <tr> <td>hahahahahahahahahaha</td> </tr> </table> |
|
|||||||||||||||
|
|
改行を禁止するタグは<nobr>だよ。 |
|
|
改行を禁止する属性名はnowrapだよ。 |
<table border="1" width="10"> <tr> <td nowrap>広げてやるぅ〜〜〜!!</td> </tr> </table> <table border="1"> <tr> <td width="10" nowrap>広がらない</td> </tr> </table> |
|
|||||||||||||||
|
|
|
単語の区切りを表すタグは<wbr>だよ。 |
<table border="0" width="10">
<tr>
<td><nobr>腹減った<wbr>食欲の秋<wbr>12月</nobr></td>
</tr>
</table>
|
|
||||
|
|
<table border="0" width="10"> <tr> <td nowrap>腹減った<wbr>食欲の秋<wbr>12月</td> </tr> </table> |
|
||||
|
|
|
<table border="0" width="10">
<tr>
<td>00000<wbr>0000000<wbr>00000</td>
</tr>
</table>
|
|
||||
|
|
|
<table border="0" width="10"> <tr> <td><nobr>腹減った</nobr><nobr>食欲の秋</nobr><nobr>12月</nobr></td> </tr> </table> |
|
||||
|
|