<?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: Sudharshan S</title>
    <description>The latest articles on DEV Community by Sudharshan S (@sudharshan24).</description>
    <link>https://dev.to/sudharshan24</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%2F714037%2F34449e0e-f649-4a76-ad4e-281140ec1584.jpeg</url>
      <title>DEV Community: Sudharshan S</title>
      <link>https://dev.to/sudharshan24</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sudharshan24"/>
    <language>en</language>
    <item>
      <title>My Visual Studio Code setup</title>
      <dc:creator>Sudharshan S</dc:creator>
      <pubDate>Mon, 19 Sep 2022 01:03:31 +0000</pubDate>
      <link>https://dev.to/sudharshan24/my-visual-studio-code-setup-16cg</link>
      <guid>https://dev.to/sudharshan24/my-visual-studio-code-setup-16cg</guid>
      <description>&lt;p&gt;Microsoft Visual Studio Code is so popular among developers around the world.&lt;/p&gt;

&lt;p&gt;We have lot of customization options to do with our code.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How I setup my VS Code for development?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Theme - Ayu or GitHub&lt;/p&gt;

&lt;p&gt;Icon - Ayu or vscode-icons&lt;/p&gt;

&lt;p&gt;Font - Fira Code or Cascadia Code → free&lt;/p&gt;

&lt;p&gt;In settings.json&lt;/p&gt;

&lt;p&gt;`&lt;br&gt;
{&lt;/p&gt;

&lt;p&gt;“files.autoSave”: “afterDelay”,&lt;/p&gt;

&lt;p&gt;“editor.fontFamily”: “‘Fira Code’, Consolas, ‘Courier New’, monospace”,&lt;/p&gt;

&lt;p&gt;“editor.renderWhitespace”: “boundary”,&lt;/p&gt;

&lt;p&gt;“editor.cursorStyle”: “line”,&lt;/p&gt;

&lt;p&gt;“editor.wordWrap”: “on”,&lt;/p&gt;

&lt;p&gt;“editor.letterSpacing”: 0.5,&lt;/p&gt;

&lt;p&gt;“editor.lineHeight”: 25,&lt;/p&gt;

&lt;p&gt;“editor.cursorBlinking”: “expand”,&lt;/p&gt;

&lt;p&gt;“editor.cursorSmoothCaretAnimation”: true,&lt;/p&gt;

&lt;p&gt;“editor.cursorWidth”: 5,&lt;/p&gt;

&lt;p&gt;“editor.fontLigatures”: true,&lt;/p&gt;

&lt;p&gt;“editor.fontWeight”: “normal”,&lt;/p&gt;

&lt;p&gt;“workbench.colorTheme”: “Ayu Mirage”,&lt;/p&gt;

&lt;p&gt;“workbench.iconTheme”: “ayu”,&lt;/p&gt;

&lt;p&gt;“eslint.alwaysShowStatus”: true,&lt;/p&gt;

&lt;p&gt;“liveServer.settings.CustomBrowser”: “chrome”,&lt;/p&gt;

&lt;p&gt;“liveServer.settings.donotShowInfoMsg”: true,&lt;/p&gt;

&lt;p&gt;“editor.formatOnPaste”: true,&lt;/p&gt;

&lt;p&gt;“editor.formatOnSave”: true,&lt;/p&gt;

&lt;p&gt;“editor.formatOnType”: true,&lt;/p&gt;

&lt;p&gt;“[html]”: {&lt;/p&gt;

&lt;p&gt;“editor.defaultFormatter”: “vscode.html-language-features”&lt;/p&gt;

&lt;p&gt;},&lt;/p&gt;

&lt;p&gt;“[css]”: {&lt;/p&gt;

&lt;p&gt;“editor.defaultFormatter”: “vscode.css-language-features”&lt;/p&gt;

&lt;p&gt;},&lt;/p&gt;

&lt;p&gt;“[javascript]”: {&lt;/p&gt;

&lt;p&gt;“editor.defaultFormatter”: “esbenp.prettier-vscode”&lt;/p&gt;

&lt;p&gt;},&lt;/p&gt;

&lt;p&gt;“[jsonc]”: {&lt;/p&gt;

&lt;p&gt;“editor.defaultFormatter”: “vscode.json-language-features”&lt;/p&gt;

&lt;p&gt;}&lt;/p&gt;

&lt;p&gt;}`&lt;/p&gt;

&lt;p&gt;Now VS Code is way better :)&lt;/p&gt;

&lt;p&gt;You can try the above settings to your environment. Definitely, you’ll fall in love with your VS Code❤&lt;/p&gt;

</description>
      <category>vscode</category>
      <category>settingssync</category>
      <category>customization</category>
    </item>
    <item>
      <title>Responsive Button size✅</title>
      <dc:creator>Sudharshan S</dc:creator>
      <pubDate>Thu, 04 Nov 2021 07:11:02 +0000</pubDate>
      <link>https://dev.to/sudharshan24/responsive-button-size-5g51</link>
      <guid>https://dev.to/sudharshan24/responsive-button-size-5g51</guid>
      <description>&lt;p&gt;⭐ In HTML, button tag is used to create tappable buttons on the web page. It is mostly used for navigation bar and submit purpose.&lt;/p&gt;

&lt;p&gt;⭐ The button should be more responsive whether he/she using mobile phones, tablets, laptop or desktop. Otherwise it will be awkward.&lt;/p&gt;

&lt;p&gt;⭐ For user experience, to create responsive buttons use min-height and min-width and set the value 40 pixels to 48 pixels perfect for fingers while using phone.&lt;/p&gt;

&lt;p&gt;👉 Watch below video to get understand&lt;br&gt;
&lt;a href="https://youtu.be/ZNDWrXE1mH4"&gt;https://youtu.be/ZNDWrXE1mH4&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;✍️Note: height and width property alone can be a little dangerous because it won’t allow the element to resize if the content inside of it is bigger than the container.&lt;/p&gt;

</description>
      <category>html</category>
      <category>css</category>
      <category>button</category>
      <category>responsive</category>
    </item>
    <item>
      <title>Answer: Completely uninstall VS Code extensions</title>
      <dc:creator>Sudharshan S</dc:creator>
      <pubDate>Wed, 03 Nov 2021 13:39:31 +0000</pubDate>
      <link>https://dev.to/sudharshan24/answer-completely-uninstall-vs-code-extensions-5dh6</link>
      <guid>https://dev.to/sudharshan24/answer-completely-uninstall-vs-code-extensions-5dh6</guid>
      <description>&lt;div class="ltag__stackexchange--container"&gt;
  &lt;div class="ltag__stackexchange--title-container"&gt;
    
      &lt;div class="ltag__stackexchange--title"&gt;
        &lt;div class="ltag__stackexchange--header"&gt;
          &lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev.to%2Fassets%2Fstackoverflow-logo-b42691ae545e4810b105ee957979a853a696085e67e43ee14c5699cf3e890fb4.svg" alt=""&gt;
          &lt;a href="https://stackoverflow.com/questions/36746857/completely-uninstall-vs-code-extensions/66299996#66299996" rel="noopener noreferrer"&gt;
            &lt;span class="title-flare"&gt;answer&lt;/span&gt; re: Completely uninstall VS Code extensions
          &lt;/a&gt;
        &lt;/div&gt;
        &lt;div class="ltag__stackexchange--post-metadata"&gt;
          &lt;span&gt;Feb 21 '21&lt;/span&gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;a class="ltag__stackexchange--score-container" href="https://stackoverflow.com/questions/36746857/completely-uninstall-vs-code-extensions/66299996#66299996" rel="noopener noreferrer"&gt;
        &lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev.to%2Fassets%2Fstackexchange-arrow-up-eff2e2849e67d156181d258e38802c0b57fa011f74164a7f97675ca3b6ab756b.svg" alt=""&gt;
        &lt;div class="ltag__stackexchange--score-number"&gt;
          1
        &lt;/div&gt;
        &lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev.to%2Fassets%2Fstackexchange-arrow-down-4349fac0dd932d284fab7e4dd9846f19a3710558efde0d2dfd05897f3eeb9aba.svg" alt=""&gt;
      &lt;/a&gt;
    
  &lt;/div&gt;
  &lt;div class="ltag__stackexchange--body"&gt;
    
&lt;p&gt;For Windows - Users\username.vscode\extensions
You may delete what extensions you don't want.
And Click on hidden items then follow the below instructions -
This PC -&amp;gt; C:\Users\username\AppData\Roaming\Code\CachedExtensionVSIXs and
delete file which you uninstalled.&lt;/p&gt;

    
  &lt;/div&gt;
  &lt;div class="ltag__stackexchange--btn--container"&gt;
    &lt;a href="https://stackoverflow.com/questions/36746857/completely-uninstall-vs-code-extensions/66299996#66299996" class="ltag__stackexchange--btn" rel="noopener noreferrer"&gt;Open Full Answer&lt;/a&gt;
  &lt;/div&gt;
&lt;/div&gt;


</description>
    </item>
    <item>
      <title>Answer: Does LESS have an "extend" feature?</title>
      <dc:creator>Sudharshan S</dc:creator>
      <pubDate>Wed, 03 Nov 2021 13:38:42 +0000</pubDate>
      <link>https://dev.to/sudharshan24/answer-does-less-have-an-extend-feature-h26</link>
      <guid>https://dev.to/sudharshan24/answer-does-less-have-an-extend-feature-h26</guid>
      <description>&lt;div class="ltag__stackexchange--container"&gt;
  &lt;div class="ltag__stackexchange--title-container"&gt;
    
      &lt;div class="ltag__stackexchange--title"&gt;
        &lt;div class="ltag__stackexchange--header"&gt;
          &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--7Gn-iPj_--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/stackoverflow-logo-b42691ae545e4810b105ee957979a853a696085e67e43ee14c5699cf3e890fb4.svg" alt=""&gt;
          &lt;a href="https://stackoverflow.com/questions/15464982/does-less-have-an-extend-feature/69825821#69825821" rel="noopener noreferrer"&gt;
            &lt;span class="title-flare"&gt;answer&lt;/span&gt; re: Does LESS have an "extend" feature?
          &lt;/a&gt;
        &lt;/div&gt;
        &lt;div class="ltag__stackexchange--post-metadata"&gt;
          &lt;span&gt;Nov  3 '21&lt;/span&gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;a class="ltag__stackexchange--score-container" href="https://stackoverflow.com/questions/15464982/does-less-have-an-extend-feature/69825821#69825821" rel="noopener noreferrer"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Y9mJpuJP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/stackexchange-arrow-up-eff2e2849e67d156181d258e38802c0b57fa011f74164a7f97675ca3b6ab756b.svg" alt=""&gt;
        &lt;div class="ltag__stackexchange--score-number"&gt;
          0
        &lt;/div&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--wif5Zq3z--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/stackexchange-arrow-down-4349fac0dd932d284fab7e4dd9846f19a3710558efde0d2dfd05897f3eeb9aba.svg" alt=""&gt;
      &lt;/a&gt;
    
  &lt;/div&gt;
  &lt;div class="ltag__stackexchange--body"&gt;
    
&lt;p&gt;Less allows us to do :extend(.class) or :extend(#id)&lt;/p&gt;

    
  &lt;/div&gt;
  &lt;div class="ltag__stackexchange--btn--container"&gt;
    &lt;a href="https://stackoverflow.com/questions/15464982/does-less-have-an-extend-feature/69825821#69825821" class="ltag__stackexchange--btn" rel="noopener noreferrer"&gt;Open Full Answer&lt;/a&gt;
  &lt;/div&gt;
&lt;/div&gt;


</description>
    </item>
    <item>
      <title>HTML vs CSS vs JS - Differences✍</title>
      <dc:creator>Sudharshan S</dc:creator>
      <pubDate>Fri, 29 Oct 2021 02:17:56 +0000</pubDate>
      <link>https://dev.to/sudharshan24/html-vs-css-vs-js-differences-1o2m</link>
      <guid>https://dev.to/sudharshan24/html-vs-css-vs-js-differences-1o2m</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--OK5N6Kn6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8zxk0c10jxhywbzzs4gp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--OK5N6Kn6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8zxk0c10jxhywbzzs4gp.png" alt="Image description" width="372" height="225"&gt;&lt;/a&gt;&lt;br&gt;
👉 HyperText Markup Language (HTML), determines how documents and web pages are displayed in a web browser, the language for the building blocks of any website.&lt;br&gt;
⭐ HTML controls the layout of the content.&lt;br&gt;
⭐ It provides structure for the web page design.&lt;br&gt;
⭐ And it's a building block of any web pages.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--hiXtoXyn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/zeymsqfytzrkwocmapyl.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--hiXtoXyn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/zeymsqfytzrkwocmapyl.png" alt="Image description" width="437" height="172"&gt;&lt;/a&gt;&lt;br&gt;
👉 Cascading Style Sheet (CSS), it determines how a document created in HTML is styled. For Example - colors, fonts, grid, flexbox, layout and responsive features.&lt;br&gt;
⭐ Applies style to the web page elements.&lt;br&gt;
⭐ It varies screen sizes to make web pages more responsive.&lt;br&gt;
⭐ Overall, CSS handles the look and feel of a web pages.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--CS108_Fk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/b42i5mvs5v1v6yc1fdwt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--CS108_Fk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/b42i5mvs5v1v6yc1fdwt.png" alt="Image description" width="330" height="225"&gt;&lt;/a&gt;&lt;br&gt;
👉 JavaScript(JS), allows you to change both HTML and CSS elements on our website after the site has been loaded, which gives you the ability to make your site more interactive and engaging for users.&lt;br&gt;
⭐ JS adds more interactivity to our web page.&lt;br&gt;
⭐ It handles complexity of functions i.e. how our web page responds while using.&lt;br&gt;
⭐ User friendly for our clients.&lt;/p&gt;

</description>
      <category>html</category>
      <category>css3</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Variables Comparison JS✍</title>
      <dc:creator>Sudharshan S</dc:creator>
      <pubDate>Tue, 19 Oct 2021 07:10:29 +0000</pubDate>
      <link>https://dev.to/sudharshan24/variables-comparison-js-472</link>
      <guid>https://dev.to/sudharshan24/variables-comparison-js-472</guid>
      <description>&lt;p&gt;👉 var -&amp;gt; Var can be re-assigned, re-defined and has a function-scope. When we declared outside the function, it has a global scope and it attached itself to the window object.&lt;/p&gt;

&lt;p&gt;👉 let -&amp;gt; Let can be re-assigned. It’s scope is within a block of code.&lt;/p&gt;

&lt;p&gt;👉 const -&amp;gt; Const cannot be re-assigned or re-defined. It’s scope is within a block of code.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>variables</category>
    </item>
    <item>
      <title>Execution Context✨</title>
      <dc:creator>Sudharshan S</dc:creator>
      <pubDate>Mon, 18 Oct 2021 03:23:04 +0000</pubDate>
      <link>https://dev.to/sudharshan24/execution-context-3me4</link>
      <guid>https://dev.to/sudharshan24/execution-context-3me4</guid>
      <description>&lt;p&gt;✏ In JavaScript, Execution Context is like a container. And it has &lt;br&gt;
   two components.&lt;br&gt;
✏ They are, memory component or variable environment and code &lt;br&gt;
   component or thread of execution.&lt;br&gt;
✏ In variable environment or memory component, it contains &lt;br&gt;
   variables, functions, and key-value pairs.&lt;br&gt;
✏ But In thread of execution, it's a place where code is executed &lt;br&gt;
   at one line at a time. Because, JavaScript is a synchronous &lt;br&gt;
   single-threaded language i.e. JavaScript can only execute one &lt;br&gt;
   command at a time and in a specific order. It only go to the &lt;br&gt;
   next line once the current line has been finished execution.&lt;/p&gt;

</description>
      <category>code</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Document Object Model🔥</title>
      <dc:creator>Sudharshan S</dc:creator>
      <pubDate>Sun, 17 Oct 2021 07:22:37 +0000</pubDate>
      <link>https://dev.to/sudharshan24/document-object-model-4420</link>
      <guid>https://dev.to/sudharshan24/document-object-model-4420</guid>
      <description>&lt;p&gt;👉 DOM stands for Document Object Model.&lt;/p&gt;

&lt;p&gt;👉 DOM is 'World Wide Web Consortium' (W3C) standard.&lt;/p&gt;

&lt;p&gt;👉 DOM is a programming interface for HTML documents.&lt;/p&gt;

&lt;p&gt;👉 When browser try to render a HTML document, it creates an &lt;br&gt;
   object based on the HTML document called DOM. &lt;/p&gt;

&lt;p&gt;👉 By using DOM, we can manipulate or change various elements &lt;br&gt;
   inside the HTML document.&lt;/p&gt;

</description>
      <category>code</category>
      <category>javascript</category>
      <category>dom</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Global Attributes - Contenteditable Attribute✍</title>
      <dc:creator>Sudharshan S</dc:creator>
      <pubDate>Tue, 28 Sep 2021 11:56:47 +0000</pubDate>
      <link>https://dev.to/sudharshan24/global-attributes-contenteditable-attribute-2810</link>
      <guid>https://dev.to/sudharshan24/global-attributes-contenteditable-attribute-2810</guid>
      <description>&lt;p&gt;In HTML Contenteditable Attribute, is a Global Attribute.&lt;/p&gt;

&lt;p&gt;By clicking on the paragraph, the content of it can be edited similar to an input text field.&lt;/p&gt;

&lt;p&gt;It has two attribute values: true and false.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;true - it specifies that the element is editable.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--HKkQYBs5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/49w1brnbb3tt0biywll0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--HKkQYBs5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/49w1brnbb3tt0biywll0.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;false - it specifies that the element is not editable.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--k_quL4g9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vapuwc7lrz6879pckqah.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--k_quL4g9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vapuwc7lrz6879pckqah.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
    </item>
    <item>
      <title>Comment out whitespace between inline elements</title>
      <dc:creator>Sudharshan S</dc:creator>
      <pubDate>Tue, 28 Sep 2021 03:50:34 +0000</pubDate>
      <link>https://dev.to/sudharshan24/comment-out-whitespace-between-inline-elements-9jo</link>
      <guid>https://dev.to/sudharshan24/comment-out-whitespace-between-inline-elements-9jo</guid>
      <description>&lt;p&gt;Inline display elements, usually such as span or a, will include up to one white-space character before and after them in the document. In order to avoid very long lines in the markup (that are hard to read) and unintentional white-space (which affects formatting), the white-space can be commented out.&lt;/p&gt;

&lt;p&gt;If you trying without a comment between the inline elements, and there will be one space between them. Sometimes picking up the space character is desired.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--TZ3eZGpy--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/oleuwe3amdrb3zfom6bu.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--TZ3eZGpy--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/oleuwe3amdrb3zfom6bu.PNG" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ZBiGnNh6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/i49f6zjbhbrbtuz8j70c.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ZBiGnNh6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/i49f6zjbhbrbtuz8j70c.PNG" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In above image, we use both an HTML comment to nullify the newline character, and without it, you can notice a small formatting differences.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Contenteditable Attribute✨</title>
      <dc:creator>Sudharshan S</dc:creator>
      <pubDate>Mon, 27 Sep 2021 15:42:46 +0000</pubDate>
      <link>https://dev.to/sudharshan24/contenteditable-attribute-3b30</link>
      <guid>https://dev.to/sudharshan24/contenteditable-attribute-3b30</guid>
      <description>&lt;p&gt;In Hypertext Markup Language (HTML), contenteditable attribute specify whether the content of an element can be edited.&lt;/p&gt;

&lt;p&gt;Upon clicking on the selected element, the content of it can be edited similar to an input text field.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>CSS Positioning (Static Positioning)</title>
      <dc:creator>Sudharshan S</dc:creator>
      <pubDate>Mon, 27 Sep 2021 13:01:57 +0000</pubDate>
      <link>https://dev.to/sudharshan24/css-positioning-static-positioning-2o58</link>
      <guid>https://dev.to/sudharshan24/css-positioning-static-positioning-2o58</guid>
      <description>&lt;p&gt;Static Positioning is the default positioning property used in CSS.&lt;br&gt;
It always goes according to the normal flow of the page.&lt;br&gt;
It will not affected by the top, right, bottom, and left properties.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
