How to style and align forms without tables?

前端 未结 11 2461
梦如初夏
梦如初夏 2020-12-05 04:27

I\'ve gotten used to using

s for aligning my form fields perfectly. This is how I commonly write my forms:

11条回答
  •  被撕碎了的回忆
    2020-12-05 04:52

    Yes, use labels and CSS:

    
    
    

    css:

    .FBLabel, .FBInput {
        display:block;
        width:150px;
        float:left;
        margin-bottom:10px;
    }
    

    See: http://www.alistapart.com/articles/prettyaccessibleforms

提交回复
热议问题