From bc9f946c480fa56cccc53117014521b3b1389650 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 24 Mar 2014 19:26:41 -0700 Subject: [PATCH] (less) Fixes #13141: Add a max-width: 100%; to label elements so IE8 wraps text --- forms.less | 1 + 1 file changed, 1 insertion(+) diff --git a/forms.less b/forms.less index f8de2e403eb6..d51065cf62a2 100644 --- a/forms.less +++ b/forms.less @@ -31,6 +31,7 @@ legend { label { display: inline-block; + max-width: 100%; // Force IE8 to wrap long content (see #13141) margin-bottom: 5px; font-weight: bold; }