How can I vertically center the text on two side sides?

Thanks for reading this.

I have a markup similar to the one below. Using height-line works when there is only one line of text, but comment data will often be multi-line. What is the best way to get the label and vertical data?

<html>
 <head>
 <style>
  body {margin:0; padding:0; font-size:12px; font-family:Verdana; text-align:center;}
  body {text-align: -moz-center; }  /* For Firefox */
  .record {width:760px; text-align:left; }
  .label {float:left; width:125px; line-height:75px;}
  .data {float:left; margin-left:10px; line-height:75px;}
  .clear {clear:left;}
 </style>
 </head>
 <body>
  <div class="record">
   <div class="label">Subject:</div>
   <div class="data">This is the subject</div>
   <span class="clear"></span>

   <div class="label">Status:</div>
   <div class="data">This is the status</div>
   <span class="clear"></span>

   <div class="label">Comments:</div>
   <div class="data">These are the comments</div>
   <span class="clear"></span>
  </div>
 </body>
</html>
+3
source share
3 answers

, <table> . , , : " , ", , , , , , ( , ) .

+1

, , DIV. , , .

I do not think that something is wrong with using the table in this particular situation.

0
source

All Articles