DEV Community

Cover image for Creating a modern beautiful and responsive button
Muskan Bhandari
Muskan Bhandari

Posted on

4 1

Creating a modern beautiful and responsive button

In this post , I'll show you how you can make responsive button for your websites using plain HTML and CSS. So let's get started.
Here the markup you need to follow this tutorial.

Alt Text

I've created a class "button-container" to
use the flexbox property.

And here's the CSS for the button:

Alt Text

The "cursor:pointer" changes the mouse cursor to pointer and the "font-size" and "height" are in rem unit just to make the button responsive.The "border:none" removes the annoying border and "border-radius:10px" makes the button edges circular (which is just nice).The "color" and "background-color" attribute are one's choice.
The "outline:none" removes the outline drawn around the button when it is clicked. The "box-shadow" property is to give the button some shadow.
And I've used some pseudo classes
The "filter:brightness(110%)" property increases the brightness of the button when we hover over it like it is changing the color.
The "transform:translate(0,0.3rem)" moves the button to the Y-direction

Hostinger image

Get n8n VPS hosting 3x cheaper than a cloud solution

Get fast, easy, secure n8n VPS hosting from $4.99/mo at Hostinger. Automate any workflow using a pre-installed n8n application and no-code customization.

Start now

Top comments (0)

Hot sauce if you're wrong - web dev trivia for staff engineers

Hot sauce if you're wrong ยท web dev trivia for staff engineers (Chris vs Jeremy, Leet Heat S1.E4)

  • Shipping Fast: Test your knowledge of deployment strategies and techniques
  • Authentication: Prove you know your OAuth from your JWT
  • CSS: Demonstrate your styling expertise under pressure
  • Acronyms: Decode the alphabet soup of web development
  • Accessibility: Show your commitment to building for everyone

Contestants must answer rapid-fire questions across the full stack of modern web development. Get it right, earn points. Get it wrong? The spice level goes up!

Watch Video ๐ŸŒถ๏ธ๐Ÿ”ฅ

๐Ÿ‘‹ Kindness is contagious

If this article connected with you, consider tapping โค๏ธ or leaving a brief comment to share your thoughts!

Okay