Answers for "how to shift table to left in markdown"

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