私はこのようにしようとしています、
単一行の「x」アイコンしかないテキストも同じ行にあるが、2 行以上の「x」アイコンを持つテキストも最後の行に移動したい場合。
1)
This is text to test x
2)
This is test to test
this is second line x
私はこれを試しています、
css:
.leftalign {
float: left;
}
.rightalign{
float: right;
}
.mainWrap{
width: 100%;
}
.removeWrap {
width: 100%;
}
Html:
<div class="mainWrap">
<div class="title leftalign">
This is test to test
this is second line
<div class="removeWrap rightalign">
<a href="" class="CloxeIcon">x</a>
</div>
</div>
</div>
これを使用することで、
This is test to test this is second line this is
third line this is fourth line this is fifth line new
line x
問題は「x」アイコンが「新しい」単語の下にあることです
私はこれが好きです、すべてのテキストは左側にあり、アイコンは右側にあるべきです
This is test to test this second line this is
third line this is fourth line this is fifth
line new line x