treehouse : what would you like to learn today?
Web Design Web Development iOS Development

[Solved] tag

  • I am learning to code ... and I would like to know when the best time is to use the tag ... is it like a "justified" kind of deal or is it for Language purposes or can it be used for both instances?
  • this is regarding the
    <bdo> tag
  • It's really for language purposes when writing in a language that reads right to left (e.g. Hebrew) rather than the standard left to right, like English, French etc.

    Used in the following way

    <bdo dir="rtl">Here is some Hebrew text!</bdo>
  • Thanks ...