Answers for "markdown align table to the left"

1

markdown center table

| Tables   |      Are      |  Cool |
|----------|:-------------:|------:|
| col 1 is |  left-aligned | $1600 |
| col 2 is |    centered   |   $12 |
| col 3 is | right-aligned |    $1 |
Posted by: Guest on March-12-2021
0

how to shift table to left in markdown

step1: First create a Code cell (not markdown) just above
your markdown cell where you want to show your table.
step2: Then write the following in your Code cell inside it.
%%html
<style>
table {float:left}
</style>

Step3: Run your Code cell and now your markdwon will appear left shifted.
Posted by: Guest on September-25-2021

Browse Popular Code Answers by Language