目录

如何操作 - 感言


了解如何使用 CSS 创建响应式推荐。


推荐通常用于让人们了解其他人对您或您的产品的看法。

Avatar

克里斯·福克斯。强大学校首席执行官。

John Doe 将我们从网络灾难中拯救出来。

Avatar

丽贝卡·弗莱克斯。公司首席执行官。

没有人比约翰·多伊更好。

Avatar

朱莉娅·罗伯茨。演员。

就是喜欢约翰尼男孩。

亲自试一试 »


如何设计推荐样式

步骤1)添加HTML:

示例

<div class="container">
  <img src="bandmember.jpg" alt="Avatar" style="width:90px">
  <p><span>Chris Fox.</span> CEO at Mighty Schools.</p>
  <p>John Doe saved us from a web disaster.</p>
</div>

<div class="container">
  <img src="avatar_g2.jpg" alt="Avatar" style="width:90px">
  <p><span >Rebecca Flex.</span> CEO at Company.</p>
  <p>No one is better than John Doe.</p>
</div>


步骤2)添加CSS:

示例

/* Style the container with a rounded border, grey background and some padding and margin */
.container {
  border: 2px solid #ccc;
  background-color: #eee;
  border-radius: 5px;
  padding: 16px;
  margin: 16px 0;
}

/* Clear floats after containers */
.container::after {
  content: "";
  clear: both;
  display: table;
}

/* Float images inside the container to the left. Add a right margin, and style the image as a circle */
.container img {
  float: left;
  margin-right: 20px;
  border-radius: 50%;
}

/* Increase the font-size of a span element */
.container span {
  font-size: 20px;
  margin-right: 15px;
}

/* Add media queries for responsiveness. This will center both the text and the image inside the container */
@media (max-width: 500px) {
  .container {
    text-align: center;
  }

  .container img {
    margin: auto;
    float: none;
    display: block;
  }
}
亲自试一试 »