Task #2175 - Nav bar
Today we need to add styles for the site navigation. The .nav block should be locked at the very top of the screen. Its height should be 50px and its width should be the entire browser window....
Today we need to add styles for the site navigation. The .nav block should be locked at the very top of the screen. Its height should be 50px and its width should be the entire browser window....
Change the text color for the visited link from red to green. This task is part of the Full-Stack JavaScript Course If you have any issues with it, you can ask for community help below the post...
The index.html file contains a list of links to lectures. When hovering over each link, it should have a right padding of 30px. This task is part of the Full-Stack JavaScript Course...
index.html file contains a list of tags that describes the skills of the developer. The first tag is the most important - let鈥檚 highlight it with #78B3AB background. Use the appropriate pseudo-class (not :nth-child)....
The index.html file contains a list of US cities. The text color of each odd list item must be #white. The text color of every even list item must be #38287F....
A calendar for March has been created in index.html. Every 7th day is Sunday. It should be marked with a red background in the calendar. Use the correct pseudo-class for the class ....
There are three <div> blocks in the index.html file. For some reason, all three fit in one line, although the new one should be wrapped. There must be something wrong with the display property, fix it....
Your colleague gave the <span> element a width of 200px. But <span> is an inline element and cannot be given a width. Change the display of the <span> element so that it continues to be in the text and the width property works....
We received urgent edits from the designer - we need to temporarily hide the second paragraph. Use the display property for this, specify styles using the hidden identifier. This task is part of the Full-Stack JavaScript Course...
Your colleague specified the <div> block to be 100vw width. He expected the block to be exactly as wide as the viewport. He also added padding and border to the block....