<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Rupal</title>
    <description>The latest articles on DEV Community by Rupal (@_rupal__).</description>
    <link>https://dev.to/_rupal__</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F482002%2F5d68f5dc-911b-4bf1-8ffc-9720d0fd990d.jpg</url>
      <title>DEV Community: Rupal</title>
      <link>https://dev.to/_rupal__</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/_rupal__"/>
    <language>en</language>
    <item>
      <title>Learning experience with Crio’s Winter of Doing</title>
      <dc:creator>Rupal</dc:creator>
      <pubDate>Thu, 28 Jan 2021 08:35:17 +0000</pubDate>
      <link>https://dev.to/_rupal__/learning-experience-with-crio-s-winter-of-doing-33f</link>
      <guid>https://dev.to/_rupal__/learning-experience-with-crio-s-winter-of-doing-33f</guid>
      <description>&lt;p&gt;CWoD is India's largest tech externship program for developers organized by Crio. It is a one-of-a-kind program focussed on bringing together budding engineering talent to work on challenging projects for the most exciting startups in the country like CRED, Groww, Jumbotail, aws, recko, slice, vicara. &lt;/p&gt;

&lt;p&gt;The program is divided into 3 stages.&lt;/p&gt;

&lt;p&gt;In Stage1, everyone who were selected in the program can participate and the stage was for one week. And the topics were HTTP, REST APIs, Linux, Cloud, Git. It was a wonderful journey with practical experience. The bytes provide a better understanding of the Concepts and at last, we also get a flavor of Full stack development Crio Micro experience in which we build our personal portfolio websites.&lt;/p&gt;

&lt;p&gt;The best part of crio is #learnbydoing philosophy, where you don’t simply saw video or learning syntax but doing hands-on practice by taking small steps, which most courses lag.&lt;/p&gt;

&lt;p&gt;Thank you Crio.do for this amazing opportunity and the externship.&lt;/p&gt;

</description>
      <category>winterofdoing</category>
      <category>shareyourlearning</category>
    </item>
    <item>
      <title>Introduction to CSS Position</title>
      <dc:creator>Rupal</dc:creator>
      <pubDate>Tue, 29 Dec 2020 12:17:13 +0000</pubDate>
      <link>https://dev.to/_rupal__/introduction-to-css-position-4f3h</link>
      <guid>https://dev.to/_rupal__/introduction-to-css-position-4f3h</guid>
      <description>&lt;p&gt;I always get confused about how to use and where to use which position value and the difference between the absolute and relative position.&lt;br&gt;
Do you also have the same confusion?&lt;br&gt;
So after reading the positions, I thought to write a blog post&lt;/p&gt;

&lt;p&gt;So starts with the definition:&lt;br&gt;
The Position property allows you to position an element. It sets how an element is positioned in a document.&lt;/p&gt;

&lt;p&gt;After setting the position property(position: relative/absolute/fixed), we have to position that element using Left/Right/Top/Bottom (Ex =&amp;gt; left:100px).&lt;br&gt;
This property doesn't work until the position property sets first.&lt;/p&gt;

&lt;p&gt;Now the diff types of position property-&lt;/p&gt;

&lt;p&gt;1) Static positioning: &lt;br&gt;
     HTML elements are positioned static by default.&lt;/p&gt;

&lt;p&gt;The static position element always positions according to the normal flow of the page.&lt;br&gt;
So, if we set Left/Right/Top/Bottom it will not affect the content which has a static position property.&lt;br&gt;
Ex position:static;&lt;br&gt;
   top: 10px;&lt;/p&gt;

&lt;p&gt;2) Relative positioning:&lt;br&gt;
     It is just like a static value, but now Left/Right/Top/Bottom will work.&lt;br&gt;
In this, the Left/Right/Top/Bottom will shift the element with respect to the value we assign.&lt;br&gt;
The content of the relatively positioned element can be moved &amp;amp; overlap other elements, but the reserved space for the element is still preserved in normal flow.&lt;br&gt;
Ex position:relative;&lt;br&gt;
   top: 100px;&lt;/p&gt;

&lt;p&gt;3) Absolute positioning:&lt;br&gt;
     It is positioned relative to the first parent element that has a position other than static.&lt;br&gt;
If no such element found it will position according to .&lt;/p&gt;

&lt;p&gt;The absolute position element is removed from the normal flow also it can overlap other elements as well.&lt;br&gt;
Ex position:absolute;&lt;br&gt;
   left: 100px;&lt;/p&gt;

&lt;p&gt;4) Fixed positioning:&lt;br&gt;
     An element with the fixed position is positioned relative to the browser window, and will not move if the window is scrolled.&lt;br&gt;
It can overlap other elements.&lt;br&gt;
Ex position:fixed;&lt;br&gt;
   top: 10px;&lt;br&gt;
   right: 5px;&lt;br&gt;
In the above example the element will fixed with the browser window to 10px from top and 5px from right.&lt;/p&gt;

&lt;p&gt;Please share your questions or thoughts below. Thanks for reading!! Hope this blog helps you!! Cheers! 😊&lt;/p&gt;

</description>
      <category>css</category>
    </item>
  </channel>
</rss>
