Please don't judge me hard, i am completely beginner, have some mercy ok? :) i found difficult to make a boarder-radius of my image and description div, because they will change their border-radius separately and not gonna look as one box with rounded corners.
Alabi Olalekan Emmanuel
@LekanjoyAll comments
- @unic0rnKateSubmitted over 2 years ago@LekanjoyPosted over 2 years ago
We are all here to help each other Kate. I can't seem to view either your live site or the code. Make sure you check again and update the right links.
As Chris said, it might be that your relative linking is wrong. If you have your styles in a different folder in your workspace is when you use
<link rel="stylesheet" href="yourCssFolderName/styles.css">
but if your style file is not in any folder you just omit the folder name.
Concerning the border-radius, it works in a clockwise direction, meaning
border-radius: top, right, bottom, left
. You can also specify each value distinctively.Hope this helps..
0