<?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: 333BlackOut</title>
    <description>The latest articles on DEV Community by 333BlackOut (@333blackout).</description>
    <link>https://dev.to/333blackout</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%2F773773%2Fa0d3c49c-afd5-410f-8ffc-53c020476485.png</url>
      <title>DEV Community: 333BlackOut</title>
      <link>https://dev.to/333blackout</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/333blackout"/>
    <language>en</language>
    <item>
      <title>Backface filter blur is not applying to fullscreen.</title>
      <dc:creator>333BlackOut</dc:creator>
      <pubDate>Mon, 13 Dec 2021 14:21:59 +0000</pubDate>
      <link>https://dev.to/333blackout/backface-filter-blur-is-not-applying-to-fullscreen-7fo</link>
      <guid>https://dev.to/333blackout/backface-filter-blur-is-not-applying-to-fullscreen-7fo</guid>
      <description>&lt;p&gt;I am trying to give my backgroung blur effect using backdrop filter, but it is not applying to the whole screen. It leaves the bottom part of the screen.&lt;/p&gt;

&lt;p&gt;I don't know why, but the screenshot is not uploading so I am sharing the link to screenshot:&lt;br&gt;
&lt;a href="https://drive.google.com/file/d/174ZzN1mfsT0097GRNVYxRGu-prh3cYib/view?usp=sharing"&gt;link&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;HTML&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en"&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;meta charset="UTF-8"&amp;gt;
    &amp;lt;meta http-equiv="X-UA-Compatible" content="IE=edge"&amp;gt;
    &amp;lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&amp;gt;
    &amp;lt;link rel="stylesheet" href="Contact.css"/&amp;gt;
    &amp;lt;script defer src="Contact.js"&amp;gt;&amp;lt;/script&amp;gt;
    &amp;lt;title&amp;gt;Document&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
    &amp;lt;main id="main"&amp;gt;
        &amp;lt;section&amp;gt;
            &amp;lt;h1 id="heading"&amp;gt;
                CONTACT US
            &amp;lt;/h1&amp;gt;
            &amp;lt;form id="contact" onsubmit="NextPage();return false"&amp;gt;
                &amp;lt;input type="text" name="name" placeholder="Name" id="name" required/&amp;gt;
                &amp;lt;input type="email" name="email" placeholder="E-mail" id="email" required/&amp;gt;
                &amp;lt;input type="text" name="sub" placeholder="Subject" id="subject" required/&amp;gt;
                &amp;lt;input type="text" name="mess" placeholder="Your Message" id="message" required/&amp;gt;
                &amp;lt;textarea rows="5" maxlength="300" placeholder="Type your queries here" name="query" id="query"&amp;gt;&amp;lt;/textarea&amp;gt;
                &amp;lt;button type="submit" name="submit" onclick="NextPage()" id="submit"&amp;gt;Submit&amp;lt;/button&amp;gt;
            &amp;lt;/form&amp;gt;
        &amp;lt;/section&amp;gt;
    &amp;lt;/main&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;CSS&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;body{
    height: 100%;
    margin: 0;
    display: grid;
    align-items: center;
    justify-items: center;
    background-image: url("Background4.jpg");
    background-size: cover;
    backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}
main{
    padding-top: 10%;
    display: grid;
    align-items: center;
    justify-items: center;
}
section{
    position: relative;
    width: 50%;
    height: 100%;
    display: grid;
    text-align: center;
    align-items: center;
    justify-items: center;
    border: 3px solid red;
    border-radius: 7px;
    background-color: aquamarine;
    padding-bottom: 3%;
}
#heading{
    color: red;
    text-shadow: 50px;
    margin-bottom: 20%;
    font-size: 30px;
    text-decoration: underline;
    font-style: italic;
}
#name, #email{
    width: 42%;
    margin: 1%;
}
#subject{
    width: 90%;
    margin-bottom: 1%;
}
#message{
    width: 90%;
    margin-bottom: 1%;
}
#query{
    width: 90%;
}
#submit{
    width: 30%;
    padding: 2%;
    margin-top: 10%;
    border: 1px dashed red;
    border-radius: 7px;
}
input{
    border: 1px dashed red;
    border-radius: 7px;
}
textarea{
    border: 1px dashed red;
    border-radius: 7px;
    resize: none;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>css</category>
      <category>beginners</category>
      <category>html</category>
      <category>design</category>
    </item>
  </channel>
</rss>
