aboutsummaryrefslogtreecommitdiff
path: root/build/default-brower-forms
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-06-08 13:43:37 -0400
committerBradley Taunt <bt@btxx.org>2024-06-08 13:43:37 -0400
commit16d28628aca9b2d356de31c319f5e7bc0f5b2b02 (patch)
tree11947abb71e38cbe75116871694a44c33d257763 /build/default-brower-forms
parentdcfb172704f3afb68a30425029ec834be2883274 (diff)
Remove incorrectly generated files, fix up markdown articles
Diffstat (limited to 'build/default-brower-forms')
-rw-r--r--build/default-brower-forms/index.html24
1 files changed, 2 insertions, 22 deletions
diff --git a/build/default-brower-forms/index.html b/build/default-brower-forms/index.html
index b62ab64..313de75 100644
--- a/build/default-brower-forms/index.html
+++ b/build/default-brower-forms/index.html
@@ -3,11 +3,12 @@
<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;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}table{text-align:left;width:100%;}.footnotes{font-size:90%;}</style>
+<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>
@@ -16,23 +17,14 @@
<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;
@@ -88,15 +80,10 @@
&#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;
}
@@ -113,24 +100,17 @@ 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>