0

我正在尝试在包含背景图像的 div 中放置一些文本。我该怎么做。该网站必须响应。类似于此站点上的正确部分。http://loveandluxesf.com/

所以这是下面的代码。

<div class="row">
    <div class="six columns" id="signup-section">
      <div id="bg-img">
        <div class="offset-by-two">
         <h2>Random text which should go in here</h2>
          <form>
            <input type="email">
            <span class="button">Register</span>
          </form>
        </div>
      </div>
    </div>

bg-img 包含一个居中的背景图像。我希望文本和表格完全适合图像。这应该适用于多种分辨率。

4

2 回答 2

0

如果您相对定位包含 div,则绝对定位文本元素 (h1),您可以使用左上右下定位将文本放置在相对于包含 div 的位置。如果您需要更多细节,请询问。

于 2012-11-05T09:59:53.107 回答
0

尝试设置style="float:left;"

于 2012-11-05T10:00:10.463 回答