我有一个客户希望他们的主页上的特定设计与他们杂志封面上的内容相匹配。封面的基本阶梯设计从未改变,但图像偶尔会改变。在不使用 1 个大图像的情况下,我无法设计出一种覆盖这种格式的方法。
这是一个小提琴:http: //jsfiddle.net/z6ghY/
注意:这个小提琴中的外观在客户希望它被看到时是正确的。我的问题是它使用了一个必须偶尔更改的大图像。如果将这三个图像分开会容易得多。
任何人都知道我可以实现这一目标的最佳方法吗?图像可以通过 HTML 或 CSS 放置,无论哪种方式都无关紧要,尽管在 HTML 中看到它们以获得 SEO 好处会很高兴。
如果小提琴没有在这里显示图像,它是.. 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; }