aboutsummaryrefslogtreecommitdiff
path: root/build/posts/default-brower-forms/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'build/posts/default-brower-forms/index.html')
-rw-r--r--build/posts/default-brower-forms/index.html135
1 files changed, 135 insertions, 0 deletions
diff --git a/build/posts/default-brower-forms/index.html b/build/posts/default-brower-forms/index.html
new file mode 100644
index 0000000..313de75
--- /dev/null
+++ b/build/posts/default-brower-forms/index.html
@@ -0,0 +1,135 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta name="color-scheme" content="dark light">
+ <link rel="icon" href="data:,">
+ <title>Very Basic Form Styling</title>
+ <link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
+ <link href="/rss.xml" type="application/rss+xml" rel="alternate" title="RSS feed for blog posts" />
+<style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}blockquote{background:rgba(0,0,0,0.1);border-left:4px solid;padding-left:5px;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}table{text-align:left;width:100%;}.footnotes{font-size:90%;}</style>
+</head>
+
+<nav>
+ <a href="#menu">Menu &darr;</a>
+</nav>
+
+<main>
+<h1 id="very-basic-form-styling">Very Basic Form Styling</h1>
+<p>2019-11-13</p>
+<p>Web forms can be great - I&#8217;m borderline obsessed with them. I love tinkering with pre-existing logins &#47; sign up pages and I&#8217;ve also open sourced a minimal CSS form-styling plugin: <a href="https://normform.netlify.com/">Normform</a>. While simple CSS plugins like these can be helpful, I often feel like we are over-engineering our web forms. I&#8217;m certainly guilty of it.</p>
+<p>That&#8217;s not to say developers should just use default browser styling for their forms and call it a day - that is far from ideal. Just pull-back on adding so much styling garbage to the forms themselves.</p>
+<p>Let&#8217;s check out an embedded demo below to see what some bare-bones form styling could look like:</p>
+<p><a href="https://codepen.io/bradleytaunt/pen/oNwzvMa">Live CodePen Example</a></p>
+<p>This form isn&#8217;t going to win any design awards or blow anyone away with its creativity. That&#8217;s okay - because it gets the job done. Users understand it&#8217;s a form and items are broken down into digestible chunks. Mission accomplished, right?</p>
+<h2 id="breaking-the-form-down">Breaking the form down</h2>
+<p>Let&#8217;s take a look at the HTML of the entire form:</p>
+<pre><code>&#60;form action=""&#62;
+ &#60;fieldset&#62;
+ &#60;legend&#62;Personal Details&#60;&#47;legend&#62;
+ &#60;label for="username"&#62;Desired Username:&#60;&#47;label&#62;
+ &#60;input type="text" id="username"&#62;
+ &#60;label for="name"&#62;Full Name:&#60;&#47;label&#62;
+ &#60;input type="text" id="name"&#62;
+ &#60;label for="email"&#62;Email Address:&#60;&#47;label&#62;
+ &#60;input type="email" id="email"&#62;
+ &#60;label for="date"&#62;Date of Birth:&#60;&#47;label&#62;
+ &#60;input type="date" id="date"&#62;
+ &#60;&#47;fieldset&#62;
+ &#60;br&#62;
+ &#60;fieldset&#62;
+ &#60;legend&#62;Contact Details&#60;&#47;legend&#62;
+ &#60;label for="address"&#62;Home Address:&#60;&#47;label&#62;
+ &#60;input type="text" id="address"&#62;
+ &#60;label for="postal"&#62;Postal Code:&#60;&#47;label&#62;
+ &#60;input type="text" id="postal"&#62;
+ &#60;label for="phone"&#62;Phone Number:&#60;&#47;label&#62;
+ &#60;input type="tel" id="phone"&#62;
+ &#60;&#47;fieldset&#62;
+ &#60;br&#62;
+ &#60;fieldset&#62;
+ &#60;legend&#62;Select an Option&#60;&#47;legend&#62;
+ &#60;label for="radio-1"&#62;
+ &#60;input type="radio" id="radio-1" name="radio-choice"&#62;
+ The option is pretty nice
+ &#60;&#47;label&#62;
+ &#60;label for="radio-2"&#62;
+ &#60;input type="radio" id="radio-2" name="radio-choice"&#62;
+ This option is a little bit better
+ &#60;&#47;label&#62;
+ &#60;label for="radio-3"&#62;
+ &#60;input type="radio" id="radio-3" name="radio-choice"&#62;
+ This option is the best
+ &#60;&#47;label&#62;
+ &#60;&#47;fieldset&#62;
+ &#60;br&#62;
+ &#60;fieldset&#62;
+ &#60;legend&#62;Notifications&#60;&#47;legend&#62;
+ &#60;label for="checkbox-1"&#62;
+ &#60;input type="checkbox" id="checkbox-1"&#62;
+ I would like to receive email notifications
+ &#60;&#47;label&#62;
+ &#60;label for="checkbox-2"&#62;
+ &#60;input type="checkbox" id="checkbox-2"&#62;
+ I would like to subscribe to the weekly newsletter
+ &#60;&#47;label&#62;
+ &#60;&#47;fieldset&#62;
+ &#60;br&#62;
+ &#60;input type="reset" value="Reset"&#62;
+ &#60;input type="submit" value="Submit"&#62;
+&#60;&#47;form&#62;
+</code></pre>
+<p>Notice the <code>fieldset</code> and <code>legend</code> elements? I bet you don&#8217;t see or hear about those HTML items very often. By default, <code>fieldset</code> allows sibling or related inputs to be semantically grouped together. The <code>legend</code> elements give the user great visual cues about which items are grouped together, helping to focus on each section individually as they complete the form. Use these grouping elements as much as possible (when it makes sense of course) for a better guided experience for your users. </p>
+<p>Avoid making your own custom sections and instead use these existing HTML semantics.</p>
+<h2 id="almost-no-css-at-all">Almost no CSS at all</h2>
+<p>Now it&#8217;s time to style this form with only 6 property declarations:</p>
+<pre><code>form label {
+ display: block;
+}
+form input {
+ display: inline-block;
+ margin-bottom: 10px;
+ padding: 10px;
+ width: 100%;
+}
+form input[type="radio"],
+form input[type="checkbox"],
+form input[type="reset"],
+form input[type="submit"] {
+ width: auto;
+}
+</code></pre>
+<p>Of course, you can always add minor adjustments (like in my demo example above)</p>
+<ul>
+<li>Legend typeface and sizing</li>
+<li>Form and fieldset background colors</li>
+<li>Extra margin and padding</li>
+<li>Custom reset &#47; submit buttons</li>
+</ul>
+<p>But the main point of this post is to showcase how little CSS is needed to implement decent web forms - so any further improvements are up to you, dear reader. </p>
+<p>Just try not to reinvent the wheel.</p>
+<h2 id="final-rant---dont-ignore-the-reset">Final rant - don&#8217;t ignore the reset</h2>
+<p>A lot of &#8220;modern&#8221; web forms have moved away from including the reset input on their forms, which I think is fairly short-sighted. Resetting all form fields might be a smaller edge case, but it is certainly a better option than relying on the user to refresh or in some cases, individually deleting each input. Yikes.</p>
+<p>Happy form building!</p>
+<footer role="contentinfo">
+ <h2>Menu Navigation</h2>
+ <ul id="menu">
+ <li><a href="/">Home</a></li>
+ <li><a href="/projects">Projects</a></li>
+ <li><a href="/uses">Uses</a></li>
+ <li><a href="/wiki">Wiki</a></li>
+ <li><a href="/resume">Resume</a></li>
+ <li><a href="/colophon">Colophon</a></li>
+ <li><a href="/now">Now</a></li>
+ <li><a href="/donate">Donate</a></li>
+ <li><a href="/atom.xml">RSS</a></li>
+ <li><a href="#top">&uarr; Top of the page</a></li>
+ </ul>
+ <small>
+ Built with <a href="https://git.sr.ht/~bt/barf">barf</a>. <br>
+ Maintained with ♥ for the web. <br>
+ Proud supporter of <a href="https://usefathom.com/ref/DKHJVX">Fathom</a> &amp; <a href="https://nextdns.io/?from=74d3p3h8">NextDNS</a>. <br>
+ The content for this site is <a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>.<br> The <a href="https://git.sr.ht/~bt/bt.ht">code for this site</a> is <a href="https://git.sr.ht/~bt/bt.ht/tree/master/item/LICENSE">MIT</a>.
+ </small>
+</footer> \ No newline at end of file