如何将两个p元素放在一起

时间:2018-03-28 11:39:23

标签: html css web

如何将两个p元素放在一起,

使用内联方法p元素中的每一行都被锯齿,那么正确的方法是什么? “我找不到任何问题” 这是我的代码

body {
  margin: 0;
  padding: 0;
}

.div1 {
  width: 100%
}

p {
  margin: 0;
}

.p1 {
  width: 50%;
  background: rgb(136, 224, 220);
}

.p2 {
  width: 50%;
  background: rgb(114, 235, 131);
}
<div class="div1">
  <p class="p1">
    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has
    survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing
    software like Aldus PageMaker including versions of Lorem Ipsum.
  </p>
  <p class="p2">
    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has
    survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing
    software like Aldus PageMaker including versions of Lorem Ipsum.
  </p>
</div>

这里是答案

p {
  margin: 0;
  display:inline;
  float:left;
 }

1 个答案:

答案 0 :(得分:1)

在css中更改display或使用span等不同元素进行游戏。

&#13;
&#13;
.Same{
  display:inline-block;
}
&#13;
<p class='Same'>Good</p>
<p class='Same'>Bad</p> 
&#13;
&#13;
&#13;