What Should I Know and Consider To Create Multi Language Web Site

后端 未结 3 2089
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-15 13:40

I\'m Creating a Multi Language website with at least 5 language, what should I consider

3条回答
  •  旧时难觅i
    2021-01-15 14:36

    When I developed bi-directional web applications, I found the following practices helped too much:

    To make your page as easy to globalize as possible, follow these best practices:

    ❑ Avoid using absolute positioning and sizes for controls.

    ❑ Use the entire width and height of forms.

    ❑ Size elements relative to the overall size of the form.

    ❑ Use a separate table cell for each control.

    ❑ Avoid enabling the NoWrap property in tables.

    ❑ Avoid specifying the Align property in tables.

    source: MCTS Self-Paced Training kit: Microsoft .NET Framework 2.0 Web-based client development.

    • As a general tip, I found using tables instead of just DIVs is very helopful.

提交回复
热议问题