非推奨
This feature has been removed from the Web standards. Though some browsers may still support it, it is in the process of being dropped. Do not use it in old or new projects. Pages or Web apps using it may break at any time.
概要
文字列を、<small>
で囲んだときと同様に、小さなフォントで表示させます。
注意: HTML5 に於いては
<small>
要素は単なる小さい文字で表示する為のものから、細目などを表すセマンティクスへ変更されています。構文
str.small()
詳細
文書中で文字列を整形して表示するためには、write
、あるいは、writeln
メソッドと共に、 small
メソッドを使用してください。サーバーサイド JavaScript では、write
関数を使って、文字列を表示してください。
例
例: 文字列のサイズを変化させるための string
オブジェクトのメソッドの使用
var worldString = "Hello, world";
console.log(worldString.small()); // <small>Hello, world</small>
console.log(worldString.big()); // <big>Hello, world</big>
console.log(worldString.fontsize(7)); // <font size="7">Hello, world</fontsize>
この例は、以下の HTML と同様の出力を生成します。:
<small>Hello, world</small> <p><big>Hello, world</big> <p><fontsize=7>Hello, world</fontsize>