1

与えられた例のように、実際のテキストを箇条書きにするにはどうすればよいですか?

これは私が持っているものです

これは私が必要なものです

私のブートストラップコード

<div class="row">
<div class="span12">
        <div class="inside">
          <hgroup>
            <h2>RESPECT FOR THE INDIVIDUAL</h2>
          </hgroup>
          <div class="entry-content">
            <p>• We listen to the other person without interruption and practice effective listening skills.<br>


4

3 に答える 3

1

以下&#9642;のように which を使用できます。html - unicode

<div class="row">
  <div class="span12">
    <div class="inside">
      <hgroup>
        <h2>RESPECT FOR THE INDIVIDUAL</h2>
      </hgroup>
      <div class="entry-content">
        <p>&#9642; We listen to the other person without interruption and practice effective listening skills.</p>
        <p>&#9642; We do not shy away from challenges</p>
        <p>&#9642; We stay true to our slogan</p>
      </div>
    </div>
  </div>
</div>

于 2016-05-16T11:27:52.017 に答える
1

要素を箇条書きリストに変換しようとするのではなく、<p>単に箇条書きリストを使用することを提案するのは不適切でしょうか :_

      <div class="entry-content">
       <ul>
          <li>We listen to the other person without interruption and practice effective listening skills.</li>
          <li>We do not shy away from challenges</li>
          <li>We stay true to our slogan</li>
        </ul>
      </div>

回転する円形のデバイスを再発明したり、ある要素を別の要素の自然な動作に押し込んだりするよりも優れているようです。ちょっとした考え... :))

于 2016-05-16T12:29:35.623 に答える