我希望文本向右浮动,而<p>
浮动右边的常规文本。
当我运行此CSS时,它会使常规<p>
文本从右向左书写。
我正在使用方形空间,所以我无法触摸DIV或做方向:rtl;
.desc-wrapper strong
{
color: #000000 !important;
text-align: left!important;
font-size: 24px!important;
}
.desc-wrapper p {
color: #000000 !important;
text-align: right!important;
margin-top: -5.7%;
direction: ltr!important;
}
答案 0 :(得分:0)
如果真的想要做的就是向右浮动普通文本,并留下<strong>
文本(并交换它们的自然顺序),那么你可以这样做;
p {
float: right;
}
strong {
float: left;
}