<?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: open</title>
    <description>The latest articles on DEV Community by open (@mosfa).</description>
    <link>https://dev.to/mosfa</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%2F378510%2F4d5a0f51-f5a3-4ffb-8110-0ba1f63fb93f.jpeg</url>
      <title>DEV Community: open</title>
      <link>https://dev.to/mosfa</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mosfa"/>
    <language>en</language>
    <item>
      <title>CSS trick: resizing elements without using JS</title>
      <dc:creator>open</dc:creator>
      <pubDate>Fri, 22 May 2020 00:27:01 +0000</pubDate>
      <link>https://dev.to/mosfa/css-trick-resizing-elements-without-using-js-5cia</link>
      <guid>https://dev.to/mosfa/css-trick-resizing-elements-without-using-js-5cia</guid>
      <description>&lt;p&gt;actually there is a funny and easy way to resizing elements in your page, just by assigning one css class to your elements like so.&lt;br&gt;
&lt;strong&gt;&lt;em&gt;html:&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;div class="resizable"&amp;gt;&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;&lt;em&gt;css:&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;div {
    height: 300px;
    width: 300px;
    background-color: #f00;
}
.resizable {
    resize: both;
    overflow: scroll /* or auto */;
    border: 2px solid #000;
}
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;for more info &lt;a href="https://developer.mozilla.org/en-US/docs/Web/CSS/resize"&gt;MDN&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;but there is somthing anoying, its how can you styling that's little span on the bottom of the resizable element ?&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

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