From 938a62008e8caaf716db23ab6d5336b336484834 Mon Sep 17 00:00:00 2001 From: CarolineGriffin <42618699+CarolineGriffin@users.noreply.github.com> Date: Mon, 15 Oct 2018 19:06:57 +0100 Subject: [PATCH] Added a brief description and bullet points. (#18718) --- .../src/pages/guide/english/css/css-buttons/index.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/client/src/pages/guide/english/css/css-buttons/index.md b/client/src/pages/guide/english/css/css-buttons/index.md index 67da850100f..7c6b9274003 100644 --- a/client/src/pages/guide/english/css/css-buttons/index.md +++ b/client/src/pages/guide/english/css/css-buttons/index.md @@ -3,6 +3,8 @@ title: CSS Buttons --- ## CSS Buttons +CSS Buttons are a great way to add functional design features to your page. + * You can style any clickable button (HTML `` @@ -15,15 +17,15 @@ title: CSS Buttons You can change several properties of a button in order to change its appearance. -To add shadows to the button use `box-shadow` property. +* To add shadows to the button use `box-shadow` property. -To add transparency to a button for a disabled effect use the property `opacity`. +* To add transparency to a button for a disabled effect use the property `opacity`. -To remove the margins and create a button group add `float:left/right` property. +* To remove the margins and create a button group add `float:left/right` property. -To create a button group but with the borders, use `float` property and add a `border property`. +* To create a button group but with the borders, use `float` property and add a `border property`. -To create a vertical group of buttons use display:`block property`. +* To create a vertical group of buttons use display:`block property`. ### Button Color