Skip to content

akshay231/mdn-4--css-comprehension

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

mdn-4--css-comprehension

Source : https://developer.mozilla.org/en-US/docs/Learn/CSS/Introduction_to_CSS/Fundamental_CSS_comprehension this is work in progress on an assignment that i am doing using mdn notes. I am trying to fulfill all user -stories to achieve the objective shown on source above. Project briefEDIT You have been provided with some raw HTML and an image, and need to write the necessary CSS to style this into a nifty little online business card, which can perhaps double as a gamer card or social media profile. The following sections describe what you need to do.

Basic setup:

First of all, create a new file in the same directory as your HTML and image files. Call it something really imaginative like style.css. Link your CSS to your HTML file via a element. The first two rulesets in the CSS resource file are yours, for FREE! After you've finished rejoicing at your good fortune, copy and paste them into the top of your new CSS file. Use them as a test to make sure your CSS is properly applied to your HTML. Above the two rules, add a CSS comment with some text inside it to indicate that this is a set of general styles for the overall page. "General page styles" would do. Also add three more comments at the bottom of the CSS file to indicate styles specific to the setup of the card container, styles specific to the header and footer, and styles specific to the main business card contents. From now on, subsequent styles added to the stylesheet should be organized in an appropriate place. Taking care of the provided selectors and rulesets:

Next up, we'd like you to look at the four selectors, and calculate the specificity for each one. Write these down somewhere where they can be found later on, such as in a comment at the top of your CSS. Now it's time to put the right selector on the right rule set! You've got four pairs of selector and ruleset to match in your CSS resources. Do this now, and add them to you CSS file. You need to: Give the main card container a fixed width/height, solid background color, border, and border-radius (rounded corners!), amongst other things. Give the header a background gradient that goes from darker to lighter, plus rounded corners that fit in with the rounded corners set on the main card container. Give the footer a background gradient that goes from lighter to darker, plus rounded corners that fit in with the rounded corners set on the main card container. Float the image to the right so that it sticks to the right hand side of the main business card contents, and give it a max-height of 100% (a clever trick that ensures that it will grow/shrink to stay the same height as its parent container, regardless of what height it becomes.) Beware! There are two errors in the provided rulesets. Using any technique that you know, track these down and fix them before moving on. New rulesets you need to write:

Write a ruleset that targets both the card header, and card footer, giving them both a total height of 50px, which includes content height of 30px and padding of 10px on top and bottom. But express it in ems. The default margin applied to the

and

elements by the browser will interfere with our design, so write a rule that targets all these elements and sets their margin to 0. To stop the image from spilling out of the main business card content (the

element), we need to give it a specific height. Set the 's height to 120px, expressed in ems. Also give it a background color of semi-transparent black, resulting in a slightly darker shade that lets the background red color shine through a bit too. Write a ruleset that gives the

an effective font size of 20px (but expressed in ems) and an appropriate line height to place it in the center of the header's content box. Recall from earlier that the content box height should be 30px — this gives you all the numbers you need to calculate the line height. Write a ruleset that gives the

inside the footer an effective font size of 15px (but expressed in ems) and an appropriate line height to place it in the center of the footer's content box. Recall from earlier that the content box height should be 30px — this gives you all the numbers you need to calculate the line height. As a last little touch, give the paragraph inside the

an appropriate padding value so that its left edge lines up with the

and footer paragraph, and set its color to be fairly light so it is easy to read. Other things to think about:

You'll get bonus marks if you write your CSS for maximum readability, with a separate declaration on each line. You should include .card at the start of the selector chain in all your rules, so that these rules wouldn't interfere with the styling of any other elements if the business card were to be put on a page with a load of other content. Hints and tips You don't need to edit the HTML in any way, except to apply the CSS to your HTML. When trying to work out the em value you need to represent a certain pixel length, think about what base font size the root () element has, and what it needs to be multiplied by to get the desired value. That'll give you your em value, at least in a simple case like this. Example The following screenshot shows an example of what the finished design should look like:

A view of the finished business card, show a reader header and footer, and a darker center panel containing the main details and image.

AssessmentE If you are following this assessment as part of an organized course, you should be able to give your work to your teacher/mentor for marking. If you are self-learning, then you can get the marking guide fairly easily by asking on the dev-mdc mailing list, or in the #mdn IRC channel on Mozilla IRC. Try the exercise first — there is nothing to be gained by cheating!

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published