構文:
text-justify : auto |inter-word | newspaper | distribute | distribute-all-lines | inter-ideograph
パラメータ:
auto: ブラウザーのユーザーエージェントが使用する位置揃えルールを決定できるようにします。
inter-word: 単語の間にスペースを追加してテキストを配置します。この動作は、テキストのすべての行を揃える最も速い方法です。両端揃えの動作は、段落の最後の行には影響しません。
新聞: 単語または文字間のスペースを増減してテキストを配置します。ラテン文字の両端を揃える最も正確な形式です。
distribute: スペースを新聞のように扱い、東アジアの文書に適しています。特にタイでは
distribute-all-lines: 行の両端を揃える方法はdistributeと同じで、揃えた2つの段落の最後の行も含めません。表意文字ドキュメントの場合
inter-ideograph: 表意文字テキストの完全な位置揃えを提供します。表意文字と単語の間のスペースを増減します
説明:
オブジェクト 内のテキストの配置を設定または取得します。 対応するスクリプト機能は textJustify です。私が書いた他の本もご覧ください。
例:
div {text-justify : auto; }
text-align:justify; を設定するだけで済みます。次の例:
英語の両端揃え設定コード<p style="text-align:justify;width:500px;margin:10px auto;border:1px solid red; padding:10px;">
This is the effect of the English text: Start: W3Schools is optimized for learning, testing, and training. Examples might be simplified to improve reading and basic understanding. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using this site, you agree to have read and accepted our terms of use and privacy policy. End.
attribute も追加する必要があります:
中国語の両端揃え設定コード<p style="text-align:justify;text-justify:inter-ideograph;width:500px;margin:10px auto; border:1px solid red;padding:10px;">
这是中文文字的效果: 测试文字内容区开始: 创想信息网—前端开发栏目,关注网站设计、前端开发。 创想信息网其他关注方向有——dedecms二次开发、标签使用及优化,计算机故障排除,学习资源分享, 开发工具推荐,视频教程汇总,精彩博文推荐,社会经验、情感经历分享、数据库使用以及几个常见的web项目运维。
以上がCSSのtext-justify属性の使い方を詳しく解説の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。