Skip to content

Commit 20e0e27

Browse files
committed
added 6 more links
1 parent 1ac992e commit 20e0e27

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

css.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,12 @@ <h2>css related interview questions</h2>
214214
<li><a href="#optimizeSelector">optimize selector</a></li>
215215
<li><a href="#importStyle">@import</a></li>
216216
<li><a href="#cssSprite">sprite</a></li>
217+
<li><a href="#specificity">specificty</a></li>
218+
<li><a href="#shadowDOM">shadow DOM</a></li>
219+
<li><a href="#transition">css transition</a></li>
220+
<li><a href="#filter">filter effect</a></li>
221+
<li><a href="#preProcessor">css pre processor</a></li>
222+
<li><a href="#seeAndTell">see & Tell</a></li>
217223
</ol>
218224
<div id="float">
219225
<h2>1. float</h2>
@@ -439,7 +445,7 @@ <h2>16. specificity </h2>
439445
<p>inline style usually wins then ID then class value (or pseudo-class or attribute selector), unversal selector (*) has no specificity.</p>
440446
<p>ref: <a href="http://coding.smashingmagazine.com/2007/07/27/css-specificity-things-you-should-know/">css specificity: things you need to know</a>, <a href="http://www.standardista.com/css3/css-specificity/">specifishity</a>, <a href="http://specificity.keegan.st/">specificiyt calculator</a></p>
441447
</div>
442-
<div id="shadowDom">
448+
<div id="shadowDOM">
443449
<h2>17. shadow DOM</h2>
444450
<p><strong>Question:</strong> What is shadow DOM?</p>
445451
<p><strong>Answer:</strong> encapsulate part of a DOM. hide subtree. you can have same ID in different shadow DOM. Polymers uses it. This way your DOM becomes reusable and u dont have to do iframe. if interviewer is not happy with your answer give him the links and tell him to spend a weekend on reading.</p>

0 commit comments

Comments
 (0)