Text next to each other

Hi,

How do I write text next to each other?

Example:

Text 1 --------- Text 2

Best,

Could you clarify what you mean by “text next to each other”? Here’s a post with your example:

https://write.as/8wrvo7yhb8c93cmt.md

I have the following:

T568A Pinouts

  1. Green/White
  2. Green
  3. Orange/White
  4. Blue
  5. Blue/White
  6. Orange
  7. Brown/White
  8. Brown

T568B Pinouts

  1. Orange/White
  2. Orange
  3. Green/White
  4. Blue
  5. Blue/White
  6. Green
  7. Brown/White
  8. Brown

I would like to put them next to each other rather than in cascade.

Ah got it! Write.as does support HTML, so you can use some to create this kind of column styling. Here is the HTML of your text:

<div class="row" style="display:flex;">
  <div class="column" style="flex: 100%;"> <strong>T568A Pinouts</strong>
1. Green/White
2. Green
3. Orange/White
4. Blue
5. Blue/White
6. Orange
7. Brown/White
8. Brown
</div>
  <div class="column" style="flex: 50%;"><strong>T568B Pinouts</strong>
1. Orange/White
2. Orange
3. Green/White
4. Blue
5. Blue/White
6. Green
7. Brown/White
8. Brown
</div>
</div>

And here’s the HTML as a Write.as post: https://write.as/w8bcinnm58errf76.md

Let me know if that resembles what you’re looking for!

1 Like

Hey, yes!

Thanks for your help, that’s what I was looking for. Thank you!