Bootstrap form input css like MS-Excel

前端 未结 2 1268
别跟我提以往
别跟我提以往 2021-02-10 06:40

I am using Bootstrap 3.0 in my project. I want my form fields look like MS-Excel cell. What is the css for this?

This is form\'s current look

And code :

2条回答
  •  自闭症患者
    2021-02-10 07:14

    use table tr

    CSS

        input{border:0px solid #000; margin:0; background:transparent; width:100%}
    table tr td{border-right:1px solid #000; border-bottom:1px solid #000;}
    table{background: #fff none repeat scroll 0 0;
        border-left: 1px solid #000;
        border-top: 1px solid #000;}
        table tr:nth-child(even){background:#ccc;}
        table tr:nth-child(odd){background:#eee;}
    

    HTML

    https://jsfiddle.net/r1frLkpo/2/

提交回复
热议问题