Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

"My Portfolio" project - CSS- Step 2

Hello fellow learners,

I am currently working on "My Portfolio" project in CSS. I am stuck at Step 2. I am unable to go back to the project Videos to review where I am going wrong. Please send me the link to "My portfolio" project videos.

I think I have done everything right, even then I am getting an error saying use flex property to align items horizontally. this is the code that I have used inside the


<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Courier;
}

nav {
display: flex;
justify-content: flex-start;
padding: 2%;
background-color: #4535AA;
color: white;
}

#nav-options {
margin-left: auto;
}

#nav-options a {
color: black;
text-decoration: none;
padding: 5px;
background-color: #FFB643;
border-radius: 5px;
}
</style>


Please get back to me, I will truly appreciate.
by

3 Answers

iamabhishek
Hey,
Why are you unable to go back to the previous step to watch video? You should be able to access all the previous steps.
richard2022
Hi Abhishek. Thank you. After your response, I did restart the project then found "show video" icon on the top which I was unable to locate previously. Either it was missing or its just me.
richard2022
May I please request you to look into this one as well for me. I have asked this question in the forum as well and also researched why this step is failing however could not find any reason. I think there are some code configuration issues there.

https://www.studytonight.com/forum/java-script-level-4-lesson-8.

Login / Signup to Answer the Question.