From 07e4a2dafe248280b5610f8c7d09b0f30b530f54 Mon Sep 17 00:00:00 2001 From: Bradley Taunt Date: Mon, 10 Jun 2024 09:41:25 -0400 Subject: Initial modifications to rebuilt only changed files based on mod date, performance updates --- build/posts/te/index.html | 52 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 build/posts/te/index.html (limited to 'build/posts/te/index.html') diff --git a/build/posts/te/index.html b/build/posts/te/index.html new file mode 100644 index 0000000..0aeab30 --- /dev/null +++ b/build/posts/te/index.html @@ -0,0 +1,52 @@ + + + + + + + + The Wonders of Text Ellipsis + + + + + + + +
+

The Wonders of Text Ellipsis

+

2016-11-15

+

A common issue when working with constrained UI elements is text overflowing outside of it’s parent or breaking into addition lines (thus breaking the layout).

+

This is most commonly seen with the direct and placeholder values for input fields on form elements. For example, the following input placeholder will be cutoff from the user’s view:

+

CodePen live example

+

Luckily, 3 simple CSS parameters can fix this.

+
input::placeholder {
+    overflow: hidden;
+    text-overflow: ellipsis;
+    white-space: nowrap;
+}
+
+

This allows the user to understand there is more content cut out from their current view. It’s not ideal to ever have content overflowing outside of the parent container, but if you need to the best workaround is to use text-overflow.

+ \ No newline at end of file -- cgit v1.2.3-54-g00ecf