Identify Attr Selector Flashcards
1
Q
[type] { border: 2px solid red; }
Which attribute are styled?
<input type="text"> <input type="password"> <button>Click</button>
A
<input type="text"> <!-- Styled --> <input type="password"> <!-- Styled --> <button>Click</button> <!-- Not Styled (no type attribute) -->
2
Q
[type="password"] { background-color: yellow; }
Which attribute are styled?
<input type="password"> <input type="text">
A
<input type="password"> <!-- Styled --> <input type="text"> <!-- Not Styled -->
3
Q
[class~="btn"] { color: white; }
Which attribute are styled?
<div class="primary-btn">Click</div> <div class="btn primary">Click</div>
A
<div class="primary-btn">Click</div> <!-- Not Styled --> <div class="btn primary">Click</div> <!-- Styled -->
4
Q
[lang|="en"] { font-style: italic; }
Which attribute are styled?
<p lang="en">Hello</p> <p lang="english">Hello</p> <p lang="en-US">Hello</p>
A
<p lang="en">Hello</p> <!-- Styled --> <p lang="english">Hello</p> <!-- Not Styled --> <p lang="en-US">Hello</p> <!-- Styled -->
5
Q
[href^="https"] { color: green; }
Which attribute are styled?
<a href="http://example.com">Not Secure</a> <a href="https://example.com">Secure Link</a>
A
<a href="http://example.com">Not Secure</a> <!-- Not Styled --> <a href="https://example.com">Secure Link</a> <!-- Styled -->
6
Q
[src$=".jpg"] { border: 5px solid blue; }
Which attribute are styled?
<img src="image.jpg"> <img src="photo.png">
A
<img src="image.jpg"> <!-- Styled --> <img src="photo.png"> <!-- Not Styled -->
7
Q
[title*="hello"] { text-decoration: underline; }
Which attribute are styled?
<h1 title="say hello">Welcome</h1> <h1 title="greetings">Hello</h1>
A
~~~
<h1>Welcome</h1>
<!-- Styled -->
<h1>Hello</h1>
<!– Not Styled –
```>
8
Q
[disabled] { opacity: 0.5; }
Which attribute are styled?
<button disabled>Click Me</button> <input type="text" disabled> <button>Click Me</button>
A
<button disabled>Click Me</button> <!-- Styled --> <input type="text" disabled> <!-- Styled --> <button>Click Me</button> <!-- Not Styled -->
9
Q
[inputmode="numeric"] { background-color: yellow; }
Which attribute are styled?
<input inputmode="text"> <input inputmode="numeric">
A
<input inputmode="text"> <!-- Not Styled --> <input inputmode="numeric"> <!-- Styled -->
10
Q
[class~="btn"] { background: blue; }
Which attribute are styled?
<div class="primary-btn">Button</div> <div class="btn primary">Button</div> <div class="btn">Button</div>
A
<div class="primary-btn">Button</div> <!-- Not Styled --> <div class="btn primary">Button</div> <!-- Styled --> <div class="btn">Button</div> <!-- Styled -->
11
Q
[lang|="fr"] { font-style: italic; }
Which attribute are styled?
<p lang="fr">Bonjour</p> <p lang="french">Hello</p> <p lang="fr-CA">Salut</p>
A
<p lang="fr">Bonjour</p> <!-- Styled --> <p lang="french">Hello</p> <!-- Not Styled --> <p lang="fr-CA">Salut</p> <!-- Styled -->
12
Q
[href^="https"] { color: green; }
Which attribute are styled?
<a href="https://example.com">Secure Link</a> <a href="https://secure.com">Safe Site</a> <a href="http://example.com">Not Secure</a>
A
<a href="https://example.com">Secure Link</a> <!-- Styled --> <a href="https://secure.com">Safe Site</a> <!-- Styled -->
13
Q
[src$=".jpg"] { border: 3px solid blue; }
Which attribute are styled?
<img src="photo.png"> <img src="photo.jpg"> <img src="image.large.jpg">
A
<img src="photo.png"> <!-- Not Styled --> <img src="photo.jpg"> <!-- Styled --> <img src="image.large.jpg"> <!-- Styled -->
14
Q
[title*="discount"] { color: red; }
Which attribute are styled?
<h2 title="big discount sale">Sale</h2> <h2 title="special offer">Offer</h2> <h2 title="discount 50%">Sale</h2>
A
<h2 title="big discount sale">Sale</h2> <!-- Styled --> <h2 title="special offer">Offer</h2> <!-- Not Styled --> <h2 title="discount 50%">Sale</h2> <!-- Styled -->