Nov-07-2018, 06:27 PM
Your paragraph is managing a margin by default haven't gave the margin a value in your class.
Also the float:left on your pararaph is displaying the text left from the Strong tag because the strong tag hasn't any set float left.
However if you add float: left to the strong tag it will display next to the text not above it.
You should add a margin: 0 to your 'amethyst-paragraph' class and replace the 'float:left' with 'text-align:left'
You could also add a 'text-align:left' to your strong tag, just to be sure.
Hope this will awsner your question
Also the float:left on your pararaph is displaying the text left from the Strong tag because the strong tag hasn't any set float left.
However if you add float: left to the strong tag it will display next to the text not above it.
You should add a margin: 0 to your 'amethyst-paragraph' class and replace the 'float:left' with 'text-align:left'
You could also add a 'text-align:left' to your strong tag, just to be sure.
Hope this will awsner your question