<?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>Responsive design - Wikitechy</title>
	<atom:link href="https://www.wikitechy.com/interview-questions/tag/responsive-design/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.wikitechy.com/interview-questions/tag/responsive-design/</link>
	<description>Interview Questions</description>
	<lastBuildDate>Wed, 11 May 2022 09:22:04 +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>Responsive design - Wikitechy</title>
	<link>https://www.wikitechy.com/interview-questions/tag/responsive-design/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>What is Responsive Web Design (RWD) ?</title>
		<link>https://www.wikitechy.com/interview-questions/web-designing/what-is-responsive-web-design-rwd/</link>
					<comments>https://www.wikitechy.com/interview-questions/web-designing/what-is-responsive-web-design-rwd/#respond</comments>
		
		<dc:creator><![CDATA[webmaster]]></dc:creator>
		<pubDate>Wed, 11 May 2022 09:20:20 +0000</pubDate>
				<category><![CDATA[Web Designing]]></category>
		<category><![CDATA[components of responsive web design]]></category>
		<category><![CDATA[Learn web development]]></category>
		<category><![CDATA[Responsive design]]></category>
		<category><![CDATA[responsive design example]]></category>
		<category><![CDATA[Responsive web design]]></category>
		<category><![CDATA[Responsive Web Design (RWD)]]></category>
		<category><![CDATA[Responsive Web Design (RWD) and User Experience]]></category>
		<category><![CDATA[responsive web design bootstrap]]></category>
		<category><![CDATA[responsive web design examples]]></category>
		<category><![CDATA[responsive web design examples with source code]]></category>
		<category><![CDATA[Responsive Web Design Introduction]]></category>
		<category><![CDATA[what is responsive design]]></category>
		<category><![CDATA[What Is Responsive Web Design?]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=4333</guid>

					<description><![CDATA[RWD-Responsive Web Design. It is used to make your web page look good, appropriate and well placed on all devices like desktops, tablet, smartphones, etc. It uses HTML and CSS to hide, resize, enlarge, shrink or move the content. It makes the content look good on any screen. It is viewed on to provide an [&#8230;]]]></description>
										<content:encoded><![CDATA[<ul>
<li style="text-align: justify;">RWD-Responsive Web Design.</li>
<li style="text-align: justify;">It is used to make your web page look good, appropriate and well placed on all devices like desktops, tablet, smartphones, etc.</li>
<li style="text-align: justify;">It uses HTML and CSS to hide, resize, enlarge, shrink or move the content.</li>
<li style="text-align: justify;">It makes the content look good on any screen.</li>
<li style="text-align: justify;">It is viewed on to provide an optimal viewing experience and it is automatically adjusting the structure of the webpage based on device.</li>
</ul>
<p><strong>For Example,</strong></p>
<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/>   &lt;head&gt;<br/>      &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;<br/>      &lt;style&gt;<br/>         * {<br/>         box-sizing:border-box;<br/>         }<br/>         .left {<br/>         background-color:#2196F3;<br/>         padding:20px;<br/>         float:left;<br/>         width:20%; /* The width is 20%, by default */<br/>         }<br/>         .main {<br/>         background-color:#f1f1f1;<br/>         padding:20px;<br/>         float:left;<br/>         width:60%; /* The width is 60%, by default */<br/>         }<br/>         .right {<br/>         background-color:#4CAF50;<br/>         padding:20px;<br/>         float:left;<br/>         width:20%; /* The width is 20%, by default */<br/>         }<br/>         /* Use a media query to add a break point at 800px: */<br/>         @media screen and (max-width:800px) {<br/>         .left  , .main, .right {width:100%;}<br/>         }<br/>      &lt;/style&gt;<br/>   &lt;/head&gt;<br/>   &lt;body&gt;<br/>      &lt;h2&gt;Media Queries&lt;/h2&gt;<br/>      &lt;p&gt;Resize the browser window, up and down around 800px wide.&lt;/p&gt;<br/>      &lt;div class=&quot;left&quot;&gt;<br/>         &lt;p&gt;Left&lt;/p&gt;<br/>      &lt;/div&gt;<br/>      &lt;div class=&quot;main&quot;&gt;<br/>         &lt;p&gt;Main Content&lt;/p&gt;<br/>      &lt;/div&gt;<br/>      &lt;div class=&quot;right&quot;&gt;<br/>         &lt;p&gt;Right&lt;/p&gt;<br/>      &lt;/div&gt;<br/>   &lt;/body&gt;<br/>&lt;/html&gt;</code></pre> </div>
<p><strong>Output</strong></p>
<p><img fetchpriority="high" decoding="async" class="alignnone size-full wp-image-4343" src="https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/05/what-is-responsive-web-design-1.png" alt="" width="2553" height="764" srcset="https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/05/what-is-responsive-web-design-1.png 2553w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/05/what-is-responsive-web-design-1-300x90.png 300w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/05/what-is-responsive-web-design-1-1024x306.png 1024w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/05/what-is-responsive-web-design-1-768x230.png 768w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/05/what-is-responsive-web-design-1-1536x460.png 1536w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/05/what-is-responsive-web-design-1-2048x613.png 2048w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/05/what-is-responsive-web-design-1-390x117.png 390w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/05/what-is-responsive-web-design-1-820x245.png 820w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/05/what-is-responsive-web-design-1-1180x353.png 1180w" sizes="(max-width: 2553px) 100vw, 2553px" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/web-designing/what-is-responsive-web-design-rwd/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
