Currently, I am facing an issue with box padding specifically in Firefox. Upon inspecting the affected span element, I noticed a property called "padding-right-ltr-source" with the value "physical". Here is the snippet of code:
>padding: 0px 15px;
padding-top: 0px;
padding-right-value: 15px;
padding-bottom: 0px;
padding-left-value: 15px;
padding-left-ltr-source: physical;
padding-left-rtl-source: physical;
padding-right-ltr-source: physical;
padding-right-rtl-source: physical;
Could you provide information on other potential values for these properties?
UPDATE: After some experimentation, I opted to use transparent borders instead of padding as it offered more consistent behavior across different browsers.