Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 1.64 KB

File metadata and controls

15 lines (10 loc) · 1.64 KB

Icon and RTL easy #css #logical properties

by Pawan Kumar @jsartisan

Take the Challenge

There is a button with an icon on the left side. The icon uses margin-right to separate itself from the text.

.icon {
  margin-right: 0.5em;
}

But in the RTL version, the icon should have margin on the left side instead of right side.

What is the best way to fix this issue for RTL mode


Back Share your Solutions Check out Solutions