Answers for "round button bleu"

CSS
9

round button css

.btn {
  display:block;
  height: 300px;
  width: 300px;
  border-radius: 50%;
  border: 1px solid red;
  
}
Posted by: Guest on March-16-2020
0

round button css

.btn {
  /*Button Styling Above*/
  border-radius: 50%; 
}
Posted by: Guest on February-21-2022
0

how to make a rounded button

<Style TargetType="Button" x:Key="RoundButton">
    <Style.Resources>
        <Style TargetType="Border">
            <Setter Property="CornerRadius" Value="5" />
        </Style>
    </Style.Resources>
</Style>
Posted by: Guest on May-03-2021

Browse Popular Code Answers by Language