HTML/CSS Questions, Resources, and Discussion (January 2018 Cohort)

Here’s the January 2018 fCC cohort information and schedule.

This topic is for members of the January 2018 fCC cohort to share information and learn more about HTML and CSS. Click on the cohort link if you’d like to join. Reply here with your questions, comments, and additional resources regarding the Basic HTML & HTML5 and Basic CSS sections.

DEADLINE: 2018-01-09 23:59 PST (2018-01-10 04:59 UTC)

You can edit this post, like a wiki, to help keep things organized and add resources and other information you want to share with others.

RESOURCES

MEMBERS

@camper, @mohamedeliwa, @Fixy250185, @firuzshoev, @mberkland, @Wahe3bru, @TammyKnox, @slamoureux, @zaynaib @angelinalblyth @LawGaming @Codewife101

Members – bookmark this topic and make sure you’re “watching” the topic so you can participate in the discussion.

watching

COHORT MEMBER GOAL:
For members of the cohort, try to reply with a resource you read/watched or something you learned about HTML and CSS every day!

8 Likes

Are we ok to edit the post with links we have found useful? After I completed the CSS I then started searching for css images and found #dailycssimage on twitter which lead me to this tutorial for creating pure CSS images. At the end of the tutorial you create a Nintendo Switch which I really enjoyed creating.

9 Likes

Thanks for sharing! Can you please fix your link to the tutorial though?

@angelinalblyth Yes, definitely! Please edit the first post and add any links you want to share. :sunny:

Also, I can access both of your links. That tutorial seems really great, thanks for sharing!

2 Likes

When i was first starting out I found that Brad Traversy’s YouTube channel was a great source of information for a lot of aspects of web design/development.

8 Likes

Would love to join this add me and we could code together :slight_smile:

2 Likes

In regards to these two challenges (1 | 2):

Here’s some interesting information about heading elements from Mozilla Developer Network (MDN).

  • Heading information may be used by user agents, for example, to construct a table of contents for a document automatically.

  • Do not use lower levels to decrease heading font size: use the CSS font-size property instead.

  • Avoid skipping heading levels: always start from <h1>, next use <h2> and so on.

  • You should consider avoiding using <h1> more than once on a page. See “Defining sections” in Using HTML sections and outlines for more information.

When I review projects, I usually see people skipping heading levels because they’re using heading levels to style their elements. For example, one may try an h2 element and realize that it adds some padding that they don’t want. Then they’ll try the h3 element and that has less padding, so they’ll keep that in even though their heading hierarchy skips from h1 to h3.

If you have a section that needs a heading and you don’t like the way it’s styled by the browser, you can always change the styling in your style.css file like this example:

h2 {
  padding: 0;
  margin: 0;
  font-size: 2rem;
}

/*You can use any CSS you want here.*/

That way, you’ll be able to maintain the heading hierarchy without skipping heading levels and get the styling you want! :sunny:

7 Likes

Thank you for sharing this! I’ve been trying to find resources on how to make css images for awhile now.
Alt Text

1 Like

Hi everyone, I recently read this great article written by the brain behind Medium’s CSS. It was written a while ago but it is still pretty relevant. It’s a good reminder to think about the structure of your code: Mediums CSS is Actually Pretty Fu***** Good

3 Likes

A note about the “Basic HTML and HTML5: Link to External Pages with Anchor Elements” challenge:


It says: "a elements, also known as anchor elements, are used to link to content outside of the current page.[…]"
That’s incorrect: an anchor element can link also on elements in the current page, by referring their ids.

2 Likes

You’re right, but I think it’s fine to represent anchors the way FCC did because you are presumably not familiar with ids at that point. Also, literally the next challenge explains how to link to internal sections.

2 Likes

Hi guys!,

I would love to join You! great idea!

2 Likes

Yes, anchors can do both …link outside the site or on the current page. The latter using id.
:slightly_smiling_face:

1 Like

Here’s some more information :clipboard: to look at in relation to the challenge on HTML Elements:

  • This is a video showing one developer’s process for creating semantic HTML markup. I find this really helpful to watch from time to time as it is a great example of the process when I’m starting a new project.

  • Here’s some information about the <main> element. I particularly like the examples in that link as they show the correct placement of the <main> element in relation to the other HTML5 semantic elements.

  • More information about HTML5 sectioning elements with some helpful information and examples on how and when it’s best to use these elements.

In the project reviews I’ve done, I commonly see <div class="header"> or <div class="footer">. Even though this is technically correct and it works, it’s not taking full advantage of the HTML5 semantic elements that are now available for all browsers. The links above, and the freeCodeCamp challenge will help us be as semantic as possible for our upcoming fCC projects! :seedling:

6 Likes

How is everyone get on this week learning about HTML and CSS? I had already completed the beta courses for both but quickly went over them again and also looked at the links posted above. I found the CSS Diner really fun to complete.

1 Like

@angelinalblyth :horse_racing: Thanks for checking in! I really appreciate you making yourself available to help us like this. :yellow_heart: I’m done with both sections, but that’s mostly because I know most of it already from the previous fCC cohort and from other sources. All of the links shared so far have been great!

I, too, am curious to know what others found helpful so far and if anyone needs help with anything.

CSS Diner IS awesome! :sunny:

What I didn’t get from CSS Diner, however, was best practices in terms of using those selectors in projects. :radioactive: It’s one thing to be able to do something and another thing entirely to know when and when not to do it!

Here are two sources that I reference often to help remind myself of CSS best practices (at least, according to some developers):

https://csswizardry.com/2012/05/keep-your-css-selectors-short/:

Another way to increase portability is to not qualify selectors. A qualified selector is one like ul.nav {} or a.button {} or div.content {}.

Qualified selectors are bad because they reduce efficiency (more checks than we really need) but—more importantly—because they tie us to specific elements. We can’t now use that .button class on an <input> or a <button>, for example. We can’t apply .nav to an <ol> to make a breadcrumb.

https://csswizardry.com/2014/07/hacks-for-dealing-with-specificity/:

… there are a number of things we can do to mitigate [the effects of specificty]:

  • Never use IDs in CSS, ever. They have no advantage over classes (anything you can do with an ID, you can do with a class), they cannot be reused, and their specificity is way, way too high. Even an infinite number of chained classes will not trump the specificity of one ID.

  • Do not nest selectors unnecessarily. If .header-nav {} will work, never use .header .header-nav {}; to do so will literally double the specificity of the selector without any benefit.

  • Do not qualify selectors unless you have a compelling reason to do so. If .nav {} will work, do not use ul.nav {}; to do so would not only limit the places you can use the .nav class, but it also increases the specificity of the selector, again, with no real gain.

  • Make heavy use of classes because they are the ideal selector: low specificity (or rather, all classes have the same specificity, so you have a level playing field), great portability, and high reusability.

tl;dr never use a selector more specific than the one you need.

5 Likes

This looks like a really great resource. Thanks for sharing!

1 Like

I thought it was weird that they make you use ids in the responsive design projects…

1 Like

I had already gone through the HTML and CSS sections on the current curriculum, but I’m not too proud to get some review with the beta - plus I believe there are some differences between them too :slight_smile: I am enjoying the resources that were posted in this thread and I must say that I enjoyed the CSS Diner as well - its just fun when learning is like playing a game :slight_smile:

2 Likes

I’m on Applied Visual Design: Use the CSS Transform scale Property to Scale an Element on Hover.

I got stuck and went a googling.
Just thought I’d add something I found.

CSS Transitions and Transforms for Beginners

5 Likes