How to style input and submit button with CSS?

前端 未结 11 817
天涯浪人
天涯浪人 2020-12-12 13:25

I\'m learning CSS. How to style input and submit button with CSS?

I\'m trying create something like this but I have no idea how to do

11条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-12 14:01

    Actually, this too works great.

    input[type=submit]{
                     width: 15px;
                     position: absolute;
                     right: 20px;
                     bottom: 20px;
                     background: #09c;
                     color: #fff;
                     font-family: tahoma,geneva,algerian;
                     height: 30px;
                     -webkit-border-radius: 15px;
                     -moz-border-radius: 15px;
                     border-radius: 15px;
                     border: 1px solid #999;
                 }
    

提交回复
热议问题