Answers for "align span to the right cs"

CSS
2

how to align span to right

<div class="title">
  <span class="name">Cumulative performance</span>
  <span class="date">20/02/2011</span>
</div>

.title .date { float:right }
.title .name { float:left }
Posted by: Guest on May-29-2021
0

span to left css

<div class="title">
  <span class="name">Cumulative performance</span>
  <span class="date">20/02/2011</span>
</div>

.title .date { float:right }
.title .name { float:left }
Posted by: Guest on April-01-2020

Browse Popular Code Answers by Language