1

上から下へのリストに一連のテキストがある場合、俳優、タイトル、について...

about は大規模または小規模にすることができます。キャストが下にある場合、キャスト内のテキストの量に関係なく、キャストを常に下に保つにはどうすればよいですか?

JSFIDDLE

#detail_center{position: absolute; height: 615px;left: 369px;top: 155px;width: 751px;}

#detail_center .title{position: absolute; top: 84px; left: 266px; font-size: 26px; color: black;}
#detail_center .runtime{position: absolute; top: 130px; left: 266px; font-size: 16px; color: black;}
#detail_center .icon-detail-bar{}
#detail_center .rating{position: absolute; top: 130px; left: 340px; font-size: 16px; color: black;}
#detail_center .synopsis{position: absolute; top: 160px; left: 266px; font-size: 16px; color: black;}
#detail_center .cast{position: absolute; top: 220px; left: 266px; font-size: 16px; color: black;}
#detail_center .lang{position: absolute; top: 290px; left: 266px; font-size: 16px; color: black;}

HTML

  <div id="detail_center">
   <div class="title">Some awesome movie title</div>
   <div class="runtime">116 mins  |</div>
   <div class="rating">PG-13</div>
   <div class="synopsis"> about stuff and stuff stuff and stufff and stuff stuff and stutuff and stuff stuff and stuff stuff and stuff stuff and stuff stuff and stuff</div>
   <div class="cast">CAST:</div>
   <div class="lang">LANGUAGES:</div>
  </div>
4

1 に答える 1

2

position:absolute子要素の CSS から取り出します。この動作中のjsFiddleを参照してください

于 2013-09-18T23:06:11.300 に答える