jsp ページにテキストを表示したい:
Sample date: <div id="sampleDate"/>
だから私はそれを次のように表示したいSample date: 29-Aug-2012
しかし、それは次のようになっています:
Sample Date:
29-Aug-2012
誰でもこれで私を助けることができますか?
次のように書きます -
Sample date: <span id="sampleDate"></span>
これはお勧めしませんが、それでも DIV を維持したい場合は、インライン要素にする必要があります -
Sample date: <div id="sampleDate"></div>
#sampleDate{ display: inline; }
css for sampleDate should be
#sampleDate {
display:inline;
}
Also you could use float:left;
for Sample date: and for #sampleDate block float:right;
put both blocks inside other block and set width ( then there wont be a huge space between these two )