And yes, the only thing I want to do is apply the border-radius attribute(or something like that) do just 1 corner to a button just like this: ""
Don't worry, the link is generated by StackOverFlow so nothing to worry about the link.
Also, I need to include some code otherwise my question will be closed: Here's what I have tried:
.button { border-radius: 30; }<button type="button">Button</button>But it applies the property to all the corners which is not what I want.
Thank You!
01 Answer
Try like following snippet, for more info take a look here:
.button { border: 1px solid #00bfff; border-bottom-right-radius: 30%; border-top-right-radius: 30%; padding: 20px; background: #00bfff; }<button type="button">Button</button>