如何制作图像块网格RTL?

时间:2017-12-14 20:41:24

标签: html css alignment

如何在此页面的x-block-grid four-up课程RTL中制作图像? (http://demo.theme.co/integrity-1/shortcodes/block-grid/

我可以使用:

制作RTL h2标签
<h2 class="h-custom-headline h5 accent" dir="rtl"><span>Code</span></h2>

但是我无法使x-block-grid four-up类RTL,静止图像从左侧开始

<ul class="x-block-grid four-up" dir="rtl">

1 个答案:

答案 0 :(得分:0)

✔️解决了这个问题:

.x-block-grid.four-up > li {
  float: right;
}

 li.x-block-grid-item {
   float: right;
 }