Best Practices: CSS or Themes in ASP.NET?

后端 未结 7 874
迷失自我
迷失自我 2021-02-13 07:03

When should I use ASP.NET Themes, and when should I use CSS? What are the advantages or disadvantages of using one over the other?

7条回答
  •  长情又很酷
    2021-02-13 07:17

    Better together !

    But Themes are not a replacement of CSS, or they're not built for the equvalent purpose to the CSS. It's purpose is to define different themes on your application and to change them with a single line. Themes can include CSS files, image files and skins.

    With skins, you can define styles for asp.net controls, so it includes complex and complete solution. For example you can define a gridview and define its style and attributes. You can define it application-wide.

    So you I think they are better together, but not equivalent to compare.

提交回复
热议问题