Skip to content

Commit 6c0b148

Browse files
committed
added display vs visiblity
1 parent f92f49b commit 6c0b148

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

css.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,10 @@ <h2>5. position</h2>
198198
<p>ref: <a href="http://www.barelyfitz.com/screencast/html-training/css/positioning/">css positioning in ten steps</a>, <a href="http://css-tricks.com/absolute-relative-fixed-positioining-how-do-they-differ/">css position</a>, <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/position">MDN: position</a></p>
199199
</div>
200200
<div id="">
201-
<h2>6. hidden vs display</h2>
201+
<h2>6. display vs visibility</h2>
202202
<p><strong>Question:</strong> What are the differences between visibility hidden and display none?</p>
203-
<p><strong>Answer:</strong> </p>
203+
<p><strong>Answer:</strong> <code>display:none</code> removes the element from the normal layout flow and allow other elements to fill in. <code>visibility:hidden</code> tag is rendered, it takes space in the normal flow but hides it.</p>
204+
<p>ref: <a href="http://www.vanseodesign.com/css/visibility-vs-display/">visibility vs Display</a></p>
204205
</div>
205206
<div id="http_request">
206207
<h2>7. specificity </h2>
@@ -256,7 +257,7 @@ <h2>10. transition</h2>
256257
</div>
257258
<div id="mtuli_lang">
258259
<h2>11. pre processor</h2>
259-
<p><strong>Question:</strong> What are the reasons to use preprocessor?</p>
260+
<p><strong>Question:</strong> Have you used any preprocessor? What are the reasons to use preprocessor?</p>
260261
<p><strong>Answer:</strong> .</p>
261262

262263
ref: <a href="http://www.frontendjournal.com/most-common-technical-interview-question-for-frontend-developers/">most common interview questions</a>

0 commit comments

Comments
 (0)