Need help on "Assessment wanted for Marking up a letter"

my code
assignment: Marking up a letter
hi, i want to make the line “20 January 2016” right-align with class attribute, but it does not work, i saw people including the TIME tag inside something like div tag then target entire div for right-alignment but, how can we do it without additional work?
PS, i use VS code i i’ve noticed that it does NOT recognize time as tag (because i have some auto-completion extension but it does not fill the rest of ti__ like it would with other tags.
thanks a million

Hello @Neo_JF

to achive that with out using the div way you can edit the css
.sender-column {
text-align: right;
display:block; that would make sure the time tag to be block element which will respect the horizontal modification
}
in general you need to know the default display setting for the tag/element to know how it will behave related to that

hope that help and have a nice day :slight_smile: