I have a 2 column div and would like to style each column separately. I am using
columns:70px 2;
-webkit-columns:70px 2; /* Safari and Chrome */
-moz-columns:70px 2;
I would like for the column on the left to text align right and the column on the right to text align left.
I know I could perhaps custom make my columns as 2 divs with paragraphs, add display inline block and set the sizes and style but i was wondering if there was a way to target a specific column via the method used above.