Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
- Course Overview 1:49
- Attribute Selectors 8:44
- Styling Form Buttons and Links with Attribute Selectors 3:34
- Attribute Selectors Challenge 3 objectives
- DRY CSS 10:51
- Child, Adjacent, and General Sibling Combinators 9:03
- Combinators Challenge 2 objectives
- Attribute Selectors and Combinators Review 5 questions

- 2x 2x
- 1.75x 1.75x
- 1.5x 1.5x
- 1.25x 1.25x
- 1.1x 1.1x
- 1x 1x
- 0.75x 0.75x
- 0.5x 0.5x
CSS gives us the flexibility of being able to target an element by any of its HTML attributes and values.
Quick Reference
Using attribute selectors
This attribute selector targets any element that has a class
attribute:
[class] {
border: solid 1px #ccc;
}
To target an input
element with a type
value of submit
, we write:
input[type="submit"] {
background-color: green;
}
This targets a
elements with a target
value of _blank
:
a[target="_blank"] {
color: tomato;
}
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up-
Peter Huang
5,427 Points1 Answer
-
Quinton Shuman
7,068 PointsAt 3:57 in Guil says "we may also see an attribute selector that's 'qualified' with an element type"
1 Answer
-
Routine Poutine
26,050 Points1 Answer
-
Karla Gallegos
Front End Web Development Techdegree Student 5,357 Points1 Answer
-
Anthony Vick
5,096 PointsWhen using class="form-contact" the settings appear for an instant and then go back to being as if they weren't there.
Posted by Anthony VickAnthony Vick
5,096 Points1 Answer
-
Matthew Francis
6,967 Points2 Answers
-
Lia Sansoucy
UX Design Techdegree Graduate 16,070 Points2 Answers
-
Dwi Andreas Prawiranegara
7,181 Points2 Answers
-
Aakash Srivastav
Full Stack JavaScript Techdegree Student 11,638 Points1 Answer
-
Winston Quin
10,359 PointsI copied the code in my workspace, saved, and clicked preview in browser, but none of the CSS selectors did anything
Posted by Winston QuinWinston Quin
10,359 Points2 Answers
-
Andre Kucharzyk
4,479 Points1 Answer
-
Pawel Ellwart
12,993 Points3 Answers
-
Hamza Saleemi
4,257 Points1 Answer
-
Matthew Keys
1,922 PointsConfused regarding "for" and "type" and stuff like that
Posted by Matthew KeysMatthew Keys
1,922 Points1 Answer
-
Andrew Teece
4,885 Points1 Answer
-
claudius mainja
9,661 Points3 Answers
View all discussions for this video
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up