You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: css.html
+8-5Lines changed: 8 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -263,11 +263,14 @@ <h2>11. only</h2>
263
263
</code></pre>
264
264
<p><strong>Answer:</strong> Stops older browsers from parsing the remainder of the selector</p>
265
265
</div>
266
-
<!-- <div id="svg_canvas">
267
-
<h2>12. svg vs canvas</h2>
268
-
<p><strong>Question:</strong> What are the difference between svg and canvas?</p>
269
-
<p><strong>Answer:</strong> <a href="http://www.sitepoint.com/how-to-choose-between-canvas-and-svg/">Read this one.</a> (I am tired of copy-pasting)</p>
270
-
</div> -->
266
+
<divid="svg_canvas">
267
+
<h2>12. overflow</h2>
268
+
<p><strong>Question:</strong> Does overflow: hidden create a new block formatting context?</p>
269
+
<pre><code>
270
+
<style><br/> div {<br/> overflow: hidden;<br/> }<br/> p {<br/> float: left;<br/> }<br/></style><br/><div><br/> <p>I am floated</p><br/> <p>So am I</p><br/></div><br/>
271
+
</code></pre>
272
+
<p><strong>Answer:</strong> yes</p>
273
+
</div>
271
274
<!-- <div id="mtuli_lang">
272
275
<h2>13. multiple languages</h2>
273
276
<p><strong>Question:</strong> How to serve a page content in multiple languages?</p>
0 commit comments