**Tell us what’s happening:**i’m having trouble setting the text-align property to the value center
could you possibly give me a guide in solving this ?
Describe your issue in detail here.
styling is done with the CSS language and the actual creating the elements of a page is done with Html code. As such the SCC syntax for styling an element is typing your element (if your styling a class you type a dot followed by the class name)followed by a set of curly brackets and then the attributes name, a colon and lastly a semi colon to show that you’ve reached the end of your statement.
example:
button{color;red}
or for a class:
.text{color:red;}
The style element is to show that all code inside is the styling of the webpage kinda like the head and body elements. Later on in the course you will style your page on a separate document and provide a link to that page.