Search code examples
cssalignmentcss-selectors

Align right is not working


I am using the inuit.css framework and added a css file which contains a right-alignment directive but the text "About | FAQ | Getting Started | Forum | Chat" is not aligned to the right.

CSS:

align_right {
 text-align: right;
}

The entire website comes directly from source control

I would appreciate any help with this.


Solution

  • may be you miss the class dot . so, you have write like this

    .align_right {
     text-align: right;
    }