In my .css file, I have the following code:
.column-left{
float: right;
height: 100%;
width: 100%;
text-align: left;
}
After that, I apply it to RMarkdown like this:
<div class="column-left">
This is an example sentence.
* Another example sentence.
* And one more example sentence.
</div>
However, only the text with bullet points is aligned to the left.