Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
h:outputLabel の幅を変更しようとして苦労していますが、それでも変更できませんでした。
CSS を使用することで、色、フォント、フレームなど、幅以外は何でも変更できます。
どうもありがとう。
labelによって生成されるHTML要素h:outputLabelは、デフォルトでは幅のない要素として表示されますinline。幅を変更できるようにするには、CSSdisplayプロパティを設定する必要があります。block
label
h:outputLabel
inline
display
block
例えば
label { display: block; width: 150px; }