Skip to content

margin-inline / padding-inline logical properties #171

@bakura10

Description

@bakura10

Hi :),

First of all thanks a lot for this wonderful library.

According to CanIUse, margin-inline and padding-inline are supported from Safari 14.5, but margin-inline-end/start and padding-inline-end/start from Safari 12.2.

I set the target for Safari 13. As of today, this:

p {
  margin-inline: auto;
  padding-inline: 2px;
}

is compiled to:

p {
  margin-inline: auto;
  padding-inline: 2px;
}

while it should compile to:

p {
  margin-inline-start: auto;
  margin-inline-end: auto;
  padding-inline-start: 2px;
  padding-inline-end: 2px;
}

Thanks!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions