For the very beginning of Basic, CSS am having an issue with the style declaration, I am placing the ; after the style declaration but yet it still wouldn’t complete the test.
Please help
For the very beginning of Basic, CSS am having an issue with the style declaration, I am placing the ; after the style declaration but yet it still wouldn’t complete the test.
Please help
Please post your code so we can help.
But in the meantime, here’s how you make a style declaration:
Let’s say this is for a p tag
<style>
p {
font-size: 10px;
}
</style>
When posting code make sure you put it in between 3 backticks on a line before and after your code like this:
```
paste your code in betweeen
```