Learning Path: CSS: Mastering Web Design with CSS3 Selectors
Course
Online
Description
-
Type
Course
-
Methodology
Online
-
Start date
Different dates available
Upgrade your selection skills using CSS3 selectors to build modern websitesCSS is a deceptively simple presentation language that has significantly developed over the last few years. Front-end developers need to keep style sheets manageable and organized by taking a modular approach to building a website.Packt’s Video Learning Paths are a series of individual video products put together in a logical and stepwise manner such that each video builds on the skills learned in the video before it.In this Video Learning Path, we start off with a brief review of the foundations of CSS by using a good text editor to automate your authoring and set up a CSS baseline. We then move on to explore the power of CSS3 selectors and how they can be intelligently leveraged to create powerful interactive sites. As we proceed, we'll master the usage of a wide array of selector techniques and tricks, manipulating inner content, understanding structural selectors, and more.By the end of this Video Learning Path, you’ll have complete control over every element of your web page to make it behave exactly the way you want it to. This Learning Path is authored by some of the best in the field.Rich FinelliRich Finelli is a husband and a father living in Piscataway, NJ, working as a frontend developer. He’s truly passionate and excited for all frontend technologies and enjoys learning about web design and development.Ben FhalaBen Fhala discovered his passion for data visualization seven years ago while he was working at Parsons in New York, in their data visualization department, PIIM. He is the owner of the online video training school, 02geek.com, and an Adobe ACP. He enjoys spending most of his time learning and teaching and has a love for visual programming and visualization in general. He has technically directed many award-winning projects and has been part of teams that have won three Agency of the Year awards.
Facilities
Location
Start date
Start date
About this course
Master the fundamental CSS concepts, such as the box model, the anatomy of a rule set, and the types of style sheets
Rename elements with classes, use descendant selectors, and understand specificity rules
Become proficient with CSS3 properties such as transitions, transforms, gradients, pseudo classes, and animations
Delve into modular, reusable, and scalable CSS code for more organized and smaller style sheets
Understand media queries and the other fundamentals of responsive web design
Reduce the excess overhead on your web pages using combinator selectors
Enhance the usability of your web pages by adding dynamic content on the fly with the help of structural selectors
Reviews
This centre's achievements
All courses are up to date
The average rating is higher than 3.7
More than 50 reviews in the last 12 months
This centre has featured on Emagister for 6 years
Subjects
- Media
- Writing
- Anatomy
- Web
- Image
- Layout
- Design
- Syntax
- Animation
- Approach
- Javascript
- HTML
- Javascript training
Course programme
- Understand what CSS is and what we are going to learn
- Know the expected prerequisite knowledge, such as how to write basic HTML and even some basic CSS, which is required to follow along with this course
- Go over different software we are using, such as Sublime Text, Mac, Live Reload, and the basics to move along the course
- Review a sample rule set and see how it affects a web page
- View the rule set in an embedded style sheet and an external style sheet
- View an inline rule set
- A review of the box model and using box-sizing border box to change the box model
- Block-level elements
- Inline elements
- Snippets
- Syntax highlighting
- Code completion and other cool features
- Add the reset
- Check out what the reset is doing
- Customize the reset to fit our needs
- Open up the Element Inspector
- Change the CSS inside the Dev Tools
- Check whether there are any errors in the console
- Renaming with classes
- Renaming with IDs
- Find out what a parent and child element is
- Create a descendant selector
- Calculate the weight of descendant selectors
- Have an image floated to the left with text on the right
- Clear the floats
- The problem with floats
- Creating a page layout
- Floating elements next to each other
- Collapsed elements caused by floats
- Floating the container
- Overflow: hidden
- Clearfix
- Explore the different button types we are going to create throughout the final site
- Create Button variation 1
- Create Button variation 2
- Create multiple classes to vary our buttons
- Add the desired classes to our HTML
- An explanation of the various weights and point systems
- Discuss the universal selector and important declaration
- Create a hover state
- Create a transition
- Discuss vendor prefixes
- Scale
- Translate
- Rotate
- Adding the HTML
- Styling the button
- Adding the hover effect
- Plug in start and stop colors to the gradient generator tool
- Copy the output to the CSS file
- Explanation of the output
- Create an unordered list in the HTML to be used as the navigation
- Add in the CSS to make it look like the final product
- The first child
- The last child
- The nth child
- Warm up by absolutely positioning the shark
- Use fixed positioning for the navigation bar
- Create a UL inside an LI
- Add the CSS for the dropdown menu
- Define the anima-tion name, duration, timing, and function
- Add in keyframes
- Create more robust an-imation for the shark logo and add in all necessary vendor pre-fixes
- Explore animation-delay, animation-iteration-count, and animation-fill-mode
- Combine and simplify all animation properties into a shorthand
- Add in all vendor pre-fixes and non-prefixed versions of the animation properties
- Fix the z-index bug
- Add the drop shadow using the box-shadow property
- Copy the navigation HTML to all other pages
- Learn the formula
- Apply the formula to widths
- Apply the formula to margins and padding
- Wrap an image in a container
- Make the container fluid
- Add a 100 percent max-width to the image
- Add a media query discuss anatomy
- Fix obvious design problems at narrower widths inside the media query
- Create the mobile menu layout
- Hide the mobile menu for the desktop and add the mobile menu icon
- Add jQuery to activate the mobile menu on a click or touch
- Use Chrome’s emu-lator
- Add the viewport meta tag
- Discuss the anatomy of the viewport tag
- Add the OTF file to the site folder
- Define new fonts in CSS
- Apply the font to elements
- Download a font kit
- Implement CSS to make it work
- Find the fonts we want from Google fonts
- Add link to the font in the <head> of the document
- Add the font to differ-ent parts of our website
- Select a font from Typekit
- Add JavaScript to our site
- Apply the font to different parts of our website
- Build the footer in the HTML where the icons will go
- Download Zurb Icon fonts and add the font files to our web-site
- Add the icon CSS file and an icon hover state to our website and apply the icons to our footer.
- Create an image that is twice the size
- Add the image to our HTML
- Update the CSS to size the 2x image down to the intended display size
- Check out retina.js and what it can do, and grab the script
- Add the script to the js folder and add a script tag that links to it in our HTML
- Test to make sure it’s working using Chrome’s Developer Tools
- Create an image that is 1.5 times the size it will be displayed at
- Add the image to the HTML
- Test to make sure it works
- Create a special media query to deter-mine the device’s pixel ratio
- Update the background image inside the media query to serve the 2x image only to retina devices
- Save an Illustrator file as SVG
- Add the SVG file as a background image and as a regular im-age
- Create an inline SVG and use it instead of an image
- Remove Retina.js from our code
- Use ‘Srcset’ attribute on the img element for non-svg images
- What is it
- What does it do
- Key terminology and diagram
- Removing float-based layout properties
- Using display: flex
- Changing flex-direction
- Explore flex-grow
- Use flex-shrink
- Use flex-basis
- Justify-content
- Nested flexboxes
- Auto-margins
- Explore align-items
- Explore align-self
- Wrapping content to multiple lines
- Arranging and centering multiple lines
- Using order to change display order
- Accessibility impacts
- The W3 spec has changed, syntax has changed
- Autoprefixer online tool
- Autoprefixer Gulp task
- CSS Preprocessors
- JavaScript and jQuery
- A recap of the website
- Links to my favorite learning resources that have helped me learn web develop-ment
Additional information
Learning Path: CSS: Mastering Web Design with CSS3 Selectors
