Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8453533
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T11:47:58+00:00 2026-06-10T11:47:58+00:00

I am working on a creative website featuring silly limericks. I would like to

  • 0

I am working on a creative website featuring silly limericks. I would like to display each line of the limerick in an alternating direction. That is, I want it in boustophedon form. I was wondering if this was possible with just HTML.

As an example, I would like to be able to write markup that looks something like this:

<p>
  <forward>There once was a young lady with pride,<br>
  <backward>who ate fourteen green apples and died.<br>
  <forward>Within the lamented,<br>
  <backward>the apple fermented<br>
  <forward>and made cider inside her insides.
</p>

which would display something like this

There once was a young lady with pride,
.deid dna selppa neerg neetruof eta ohw
Within the lamented,
detnemref elppa eht
and made cider inside her insides.

For this example, I just manually wrote the text backwards, but I don’t want to have to keep doing that since it’s a very tedious process. It would be nice if I could do this in pure HTML, without having to do any scripting to dynamically manipulate the text.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T11:48:00+00:00Added an answer on June 10, 2026 at 11:48 am

    Yes, this is possible using the combination of two Unicode control characters. Namely, the

    • ‘RIGHT-TO-LEFT OVERRIDE’ (U+202E)
    • ‘LEFT-TO-RIGHT OVERRIDE’ (U+202D)

    Each override character makes the text that follows it flow in the corresponding direction.

    These can be inserted into an document with the HTML entities &#x202E; and &#x202D;, or the decimal equivalents, &#8238; and &#8237;.

    This allows you to write your example thus:

    <p>
      There once was a young lady with pride,<br>
      &#x202e;who ate fourteen green apples and died.<br>
      &#x202d;Within the lamented,<br>
      &#x202e;the apple fermented<br>
      &#x202d;and made cider inside her insides.
    </p>
    

    I’m posting this HTML in now so you can see how it appears. You can observe the actual direction change by selecting parts of the text.

    There once was a young lady with pride,
    ‮who ate fourteen green 123 apples and died.
    ‭Within the lamented,
    ‮the apple fermented
    ‭and made cider inside her insides.

    If you wanted a true boustrephedon, where the letters forms are also backwards, and if you don’t mind using CSS3 features, then you could use a CSS3 transform:

    backward {
      display: inline-block;
      -moz-transform: scale(-1, 1);
      -webkit-transform: scale(-1, 1);
      transform: scale(-1, 1);
    }
    <p>
      There once was a lady with pride,<br>
      <backward>who ate fourteen green apples and died.</backward><br> Within the lamented,<br>
      <backward>the apple fermented</backward><br> and made cider inside her insides.
    </p>
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on a blackberry application and would like to use the OpenStreetMap reverse
Working with an undisclosed API, I found a function that can set the number
I'm working with an <input> field and I'd like to style part of the
I'm working in a modified version of Sybase 10 that doesn't have the stuff,
I'm working on WinForms application. I have group of tests classes, each class performs
We have need for creative htaccess file: when user enters file that exists -
Working with a Lucene index, I have a standard document format that looks something
On the shared-host where my website is, I have an e-mail forwarder that sends
I'm working with a large database of businesses. I'd like to be able to
I am working on a Cocos2d iPad game that includes a magical book. From

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.