Skip to content

Commit cefdd00

Browse files
committed
added placeholder for five elements
1 parent 2460457 commit cefdd00

File tree

1 file changed

+33
-4
lines changed

1 file changed

+33
-4
lines changed

css.html

Lines changed: 33 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ <h2>11. overflow</h2>
322322
</div>
323323

324324
<div id="div_section_article">
325-
<h2>13. media queries</h2>
325+
<h2>12. media queries</h2>
326326
<p><strong>Question:</strong> How could you apply css rules specific to a media?</p>
327327
<p><strong>Answer: </strong> <code>@media (max-width:700px){...}</code> means you want to apply rules to those media whose max-width is 700 px. this means every samller device will have this rule.</p>
328328
<p><code>@media (max-width:700px) and (orientation: landscape){...}</code> will apply rules for media smaller than 700px and in landscape orientation.</p>
@@ -337,17 +337,45 @@ <h2>13. pseudo class</h2>
337337
<p><strong>Question:</strong> Whare are some peseudo classed u have used?</p>
338338
<p><strong>Answer: </strong> pseudo class tells you specific state of an element. allow to style element dynamically. The most popular one is <code>:hover</code>. Besides i have used <code>:visited</code>, <code>:focus</code>, <code>:nth-child</code>, <code>nth-of-type</code>, <code>:link</code>, etc.</p>
339339
<p>pseudo classes is better if you dont want to mess up with javascript however, pesudo-classes is slow to process and apply rules.</p>
340-
<p>ref: <a href="http://coding.smashingmagazine.com/2011/03/30/how-to-use-css3-pseudo-classes/">How to use pseudo classes</a>, <a href="http://css-tricks.com/pseudo-class-selectors/">meet pseudo classes</a></p>
340+
<p>ref: <a href="http://coding.smashingmagazine.com/2011/03/30/how-to-use-css3-pseudo-classes/">How to use pseudo classes</a>, <a href="http://css-tricks.com/pseudo-class-selectors/">meet pseudo classes</a>, <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/Pseudo-classes">list of pseudo classes</a></p>
341+
<h4>pseudo elements</h4>
342+
<p>pseudo elements helps you to add cosmetics contents. for example, you can add contents before/after of a content</p>
343+
<p>ref: <a href="http://nicolasgallagher.com/an-introduction-to-css-pseudo-element-hacks/">intro to css pseudo element</a>, <a href="http://coding.smashingmagazine.com/2011/07/13/learning-to-use-the-before-and-after-pseudo-elements-in-css/">:before :after</a>, <a href="http://css-tricks.com/css-content/">css content</a>, <a href="http://www.w3.org/TR/CSS21/generate.html">W3: generate content</a></p>
344+
</div>
345+
<div id="something">
346+
<h2>14. text effect</h2>
347+
<p><strong></strong></p>
348+
<p><strong></strong></p>
349+
</div>
350+
<div id="filter">
351+
<h2>15. filter</h2>
352+
<p><strong>Question: </strong></p>
353+
<p><strong>Answer: </strong></p>
354+
</div>
355+
<div id="something">
356+
<h2>16. @import</h2>
357+
<p><strong></strong></p>
358+
<p><strong></strong></p>
359+
</div>
360+
<div id="something">
361+
<h2>17. vertical alignment</h2>
362+
<p><strong></strong></p>
363+
<p><strong></strong></p>
364+
</div>
365+
<div id="something">
366+
<h2>18. sprite</h2>
367+
<p><strong></strong></p>
368+
<p><strong></strong></p>
341369
</div>
342370
<div id="mtuli_lang">
343-
<h2>14. pre processor</h2>
371+
<h2>19. pre processor</h2>
344372
<p><strong>Question:</strong> Have you used any preprocessor? What are the reasons to use preprocessor?</p>
345373
<p><strong>Answer:</strong> learn sass or pass away.</p>
346374

347375
ref: <a href="http://www.frontendjournal.com/most-common-technical-interview-question-for-frontend-developers/">most common interview questions</a>
348376
</div>
349377
<div id="download_order">
350-
<h2>15. show & tell</h2>
378+
<h2>20. show & tell</h2>
351379
<p><strong>Question:</strong> What is the color of text sausage for he following rule?</p>
352380
<strong>html:</strong>
353381
<pre><code>
@@ -432,6 +460,7 @@ <h2>temporary list of questions</h2>
432460
<li>:after and :before</li>
433461
<li>pseudo classes</li>
434462
<li>vertical align center</li>
463+
<li>z-index, ask something about it</li>
435464
</ul>
436465
<h2>References</h2>
437466
<ul>

0 commit comments

Comments
 (0)