ホームページの特定のデザインを雑誌の表紙に表示されているものと一致させたいクライアントがいます。カバーの基本的な階段のデザインは決して変更されませんが、画像が変更されることがあります。1枚の大きな画像を使わずにこのフォーマットをカバーする方法を考案することはできませんでした。
これがフィドルです:http://jsfiddle.net/z6ghY/
注:このフィドルの外観は、クライアントがどのように表示されるかを示しています。私の問題は、時々変更しなければならない1つの大きな画像を使用することです。これらの3つの画像を分離すると、はるかに簡単になります。
誰かが私がこれを達成できる最善の方法を知っていますか?画像はHTMLまたはCSSを介して配置できますが、どちらの方法でも問題ありませんが、SEOのメリットのためにHTMLで画像を表示すると便利です。
フィドルがここに画像を表示しない場合は、ここにあります。http://i.imgur.com/6s2i9L7.png
HTML:
<h2>Innovative Engineering Solutions in Material Handling</h2>
<div class="home-container">
<div class="home-content"><p>Experience the impact that Lauyans & Company can make on your business success. Through innovative engineering solutions in material handling, Lauyans will take responsibility for the planning, execution and acceptance of your project.</p>
<!--h2>Lauyans... why choose anyone else?</h2-->
<h2 style="margin: 80px 0 0 30px;">Lauyans...<br /> why choose<br /> anyone else?</h2>
</div><!-- END HOME CONTENT -->
</div><!-- END HOME CONTAINER -->
<div class="home-container2">
<div class="home-planning">
<h3>Planning</h3>
</div>
<div class="home-execution">
<h3>Execution</h3>
</div>
<div class="home-acceptance">
<h3>Acceptance</h3>
</div>
</div>
CSS:
.home-container { width: 690px; height: 459px; background: url('/wp-content/uploads/2013/01/home-image.png') 50% 100% no-repeat; }
.home-container2 { width: 690px; }
.home-content { width: 430px; height: 429px; padding: 15px; }
.home-content p { padding: 0; margin: 0; }
.home-content h2 { padding-top: 10px; margin: 0; }
.home-container2 h3 { padding-top: 0px; margin: 0; text-align: center; }
.home-planning { width: 230px; float: left; }
.home-execution { width: 230px; float: left; }
.home-acceptance { width: 230px; float: left; }