1. 程式人生 > >什麽鬼

什麽鬼

value bsp solid submit val borde for sub css

type為submit的邊框

<style type="text/css">
    *{margin: 0;padding: 0;}
    input[type=‘text‘]{
        background: red;
        width: 80px;
        height: 40px;
        border:solid 1px black;
    }
    input[type=‘submit‘]{
        background: green;
        width: 80px;
        height: 40px;
        border
:solid 1px black; } </style> </head> <body> <form> <input type="text" name=""> <input type="submit" value="suosuo" name=""> </form> </body>

什麽鬼