How can I line up multiple tables side by side in Outlook email?

leora

I want to show some text in a "tag" inside an outlook email and the recommendation I got is to use tables like this (assuming that the text I want to show in a "tag" is MY TEXT

  <table style='background-color: blue'><tr><td style='padding:2px 5px'><b>MY TEXT</b></td></tr></table>

this works great but now I need to show multiple tags side by side and if i do something like this where I put one after an other, they show up on different lines.

  <table style='background-color: blue'><tr><td style='padding:2px 5px'><b>MY TEXT</b></td></tr></table>

  <table style='background-color: blue'><tr><td style='padding:2px 5px'><b>OTHER TEXT</b></td></tr></table>

Is there anyway to line this up side by side and not having a line break after each table within an Outlook email?

Adam Hughes

One table will work fine. A new table or table row will move the content vertically. A table cell (td) will place it horizontally

<table>
    <tr>
        <td>First Text</td>
        <td>Second Text</td>
    </tr>
</table>

I've placed a more in depth example on codepen

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

how can i synchronize wordpress between local side and remote side?

분류에서Dev

Two divs side by side: how can i make the div that is on the left side go down when it breaks for responsive layout?

분류에서Dev

Two PHP tables side by side

분류에서Dev

How can i have a multiselect option in right side end

분류에서Dev

How can I make a custom "POST" request on client side?

분류에서Dev

Can I install visual studio 2012 side by side with 2010?

분류에서Dev

How to play multiple videos side-by-side synchronized?

분류에서Dev

Can I save client side state in javascript?

분류에서Dev

Can I Composite from right side with imagemagick?

분류에서Dev

How do I zip up multiple files on command line?

분류에서Dev

How can I merge two Pcollections(various sizes/data) with a common "key"(Street) via a side input?

분류에서Dev

How can I serve a PDF to a browser without storing a file on the server side?

분류에서Dev

HTML tables side by side (sharepoint) (without CSS/style)

분류에서Dev

How to implement side-by-side tableviews

분류에서Dev

How to align divs side by side without overlapping?

분류에서Dev

How do I set up an email server?

분류에서Dev

Form side-by-side breaking line in Bootstrap 3

분류에서Dev

Firebase, React: How do I display http errors on client side?

분류에서Dev

How do I use my work Outlook 2016 email with Outlook 365? Or use something other than outlook for my email client?

분류에서Dev

How do I split up a large .iso file across multiple DVDs via command line tools?

분류에서Dev

New blank email created on Outlook start up

분류에서Dev

I want cliend side pagination/sorting? search in server side in jqgrid?

분류에서Dev

How can I find a lost folder in Outlook?

분류에서Dev

How can I show that an email is authentic?

분류에서Dev

How to compare 2 specific processors with the same benchmark side by side?

분류에서Dev

How to put a webcam recording and a desktop recording side by side with ffmpeg

분류에서Dev

In Ms Word, what could cause two tables to appear side by side when there is only one column?

분류에서Dev

Flycheck and Clutter - how can I set it up?

분류에서Dev

Meteor JS: How do I insert a document into a collection, but only on the client-side?

Related 관련 기사

  1. 1

    how can i synchronize wordpress between local side and remote side?

  2. 2

    Two divs side by side: how can i make the div that is on the left side go down when it breaks for responsive layout?

  3. 3

    Two PHP tables side by side

  4. 4

    How can i have a multiselect option in right side end

  5. 5

    How can I make a custom "POST" request on client side?

  6. 6

    Can I install visual studio 2012 side by side with 2010?

  7. 7

    How to play multiple videos side-by-side synchronized?

  8. 8

    Can I save client side state in javascript?

  9. 9

    Can I Composite from right side with imagemagick?

  10. 10

    How do I zip up multiple files on command line?

  11. 11

    How can I merge two Pcollections(various sizes/data) with a common "key"(Street) via a side input?

  12. 12

    How can I serve a PDF to a browser without storing a file on the server side?

  13. 13

    HTML tables side by side (sharepoint) (without CSS/style)

  14. 14

    How to implement side-by-side tableviews

  15. 15

    How to align divs side by side without overlapping?

  16. 16

    How do I set up an email server?

  17. 17

    Form side-by-side breaking line in Bootstrap 3

  18. 18

    Firebase, React: How do I display http errors on client side?

  19. 19

    How do I use my work Outlook 2016 email with Outlook 365? Or use something other than outlook for my email client?

  20. 20

    How do I split up a large .iso file across multiple DVDs via command line tools?

  21. 21

    New blank email created on Outlook start up

  22. 22

    I want cliend side pagination/sorting? search in server side in jqgrid?

  23. 23

    How can I find a lost folder in Outlook?

  24. 24

    How can I show that an email is authentic?

  25. 25

    How to compare 2 specific processors with the same benchmark side by side?

  26. 26

    How to put a webcam recording and a desktop recording side by side with ffmpeg

  27. 27

    In Ms Word, what could cause two tables to appear side by side when there is only one column?

  28. 28

    Flycheck and Clutter - how can I set it up?

  29. 29

    Meteor JS: How do I insert a document into a collection, but only on the client-side?

뜨겁다태그

보관