<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>flexbox vs grid - Wikitechy</title>
	<atom:link href="https://www.wikitechy.com/interview-questions/tag/flexbox-vs-grid/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.wikitechy.com/interview-questions/tag/flexbox-vs-grid/</link>
	<description>Interview Questions</description>
	<lastBuildDate>Thu, 21 Apr 2022 07:21:45 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>

<image>
	<url>https://www.wikitechy.com/interview-questions/wp-content/uploads/2025/10/cropped-wikitechy-icon-32x32.png</url>
	<title>flexbox vs grid - Wikitechy</title>
	<link>https://www.wikitechy.com/interview-questions/tag/flexbox-vs-grid/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>What is Flexbox ?</title>
		<link>https://www.wikitechy.com/interview-questions/web-designing/what-is-flexbox/</link>
					<comments>https://www.wikitechy.com/interview-questions/web-designing/what-is-flexbox/#respond</comments>
		
		<dc:creator><![CDATA[webmaster]]></dc:creator>
		<pubDate>Wed, 20 Apr 2022 06:12:01 +0000</pubDate>
				<category><![CDATA[Web Designing]]></category>
		<category><![CDATA[basic concepts of flexbox]]></category>
		<category><![CDATA[css flexbox]]></category>
		<category><![CDATA[flexbox]]></category>
		<category><![CDATA[flexbox css]]></category>
		<category><![CDATA[flexbox examples]]></category>
		<category><![CDATA[flexbox grid]]></category>
		<category><![CDATA[flexbox html]]></category>
		<category><![CDATA[flexbox overview]]></category>
		<category><![CDATA[flexbox properties]]></category>
		<category><![CDATA[flexbox vs grid]]></category>
		<category><![CDATA[introduction to css flexbox]]></category>
		<category><![CDATA[learn css flexbox]]></category>
		<category><![CDATA[what is flexbox in bootstrap]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=4169</guid>

					<description><![CDATA[It is a one-dimensional layout model that has efficient and flexible layouts with distributed spaces among items to control their alignment structure in CSS . It is a layout model that provides a clean and easy way to arrange items within a container. It is responsive and mobile-friendly &#38; it can be useful for creating [&#8230;]]]></description>
										<content:encoded><![CDATA[<ul>
<li style="text-align: justify;">It is a one-dimensional layout model that has efficient and flexible layouts with distributed spaces among items to control their alignment structure in <a href="https://www.wikitechy.com/css/">CSS</a> .</li>
<li style="text-align: justify;">It is a layout model that provides a clean and easy way to arrange items within a container.</li>
<li style="text-align: justify;">It is responsive and mobile-friendly &amp; it can be useful for creating small-scale layouts.</li>
<li style="text-align: justify;">In this, there are two main components in flexbox:</li>
</ul>
<ol>
<li style="list-style-type: none;">
<ol>
<li style="text-align: justify;"><strong>Flex container</strong> &#8211; Is the parent “div” which contains various divisions.</li>
<li style="text-align: justify;"><strong>Flex items</strong> &#8211; In this, the items inside the container “div”.</li>
</ol>
</li>
</ol>
<p><img fetchpriority="high" decoding="async" class="alignnone size-full wp-image-4170" src="https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/04/components-of-flexbox.png" alt="" width="1654" height="538" srcset="https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/04/components-of-flexbox.png 1654w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/04/components-of-flexbox-300x98.png 300w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/04/components-of-flexbox-1024x333.png 1024w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/04/components-of-flexbox-768x250.png 768w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/04/components-of-flexbox-1536x500.png 1536w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/04/components-of-flexbox-390x127.png 390w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/04/components-of-flexbox-820x267.png 820w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/04/components-of-flexbox-1180x384.png 1180w" sizes="(max-width: 1654px) 100vw, 1654px" /></p>
<h4 id="for-example"><strong>For example,</strong></h4>
<div class="code-embed-wrapper"> <div class="code-embed-infos"> </div> <pre class="language-markup code-embed-pre line-numbers"  data-start="1" data-line-offset="0"><code class="language-markup code-embed-code">             &lt;!DOCTYPE html&gt;<br/>             &lt;html&gt;<br/> <br/>             &lt;head&gt;<br/>                  &lt;title&gt;Flexbox Tutorial&lt;/title&gt;<br/>                  &lt;style&gt;<br/>                 .flex-container {<br/>                     display: flex;<br/>                     background-color: #32a852;<br/>                 }<br/>     <br/>                .flex-container div {<br/>                    background-color: #c9d1cb;<br/>                    margin: 10px;<br/>                    padding: 10px;<br/>                 }<br/>                 &lt;/style&gt;<br/>             &lt;/head&gt;<br/> <br/>             &lt;body&gt;<br/>                 &lt;h2&gt;Welcome to kaashiv&lt;/h2&gt;<br/>                 &lt;h4&gt; Flexbox&lt;/h4&gt;<br/>                 &lt;div class=&quot;flex-container&quot;&gt;<br/>                     &lt;div&gt;Item1&lt;/div&gt;<br/>                     &lt;div&gt;Item2&lt;/div&gt;<br/>                     &lt;div&gt;Item3&lt;/div&gt;<br/>                  &lt;/div&gt;<br/>              &lt;/body&gt;<br/> <br/>              &lt;/html&gt;</code></pre> </div>
<h4 id="output"><strong>Output:</strong></h4>
<p><img decoding="async" class="alignnone size-full wp-image-4171" src="https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/04/output-flexbox.png" alt="" width="987" height="537" srcset="https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/04/output-flexbox.png 987w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/04/output-flexbox-300x163.png 300w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/04/output-flexbox-768x418.png 768w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/04/output-flexbox-390x212.png 390w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/04/output-flexbox-820x446.png 820w" sizes="(max-width: 987px) 100vw, 987px" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/web-designing/what-is-flexbox/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
