When it comes to the styling of my first line, I have a specific style in mind:
* {
text-align:left;
}
This style works well across most parts of the site as they are predominantly left aligned. However, there are few areas where I need the text alignment to be centered using text-align: center
, but it doesn't seem to update even when I use !important
. An example of this is shown below:
table.footer {
text-align:center !important;
}
Do you have any suggestions on how I can resolve this issue?