-5

I have some stylesheets with me which can be reused. Can I use this existing CSS files in my mvc 4 application to get styling to my application

  • 4
    Yes, you can use CSS to style web pages. Why would you think you couldn't? – David Aug 28 '15 at 15:15
  • it actually comes with bootstrap an a great mechanism to concatenate and minify all your styles. is in the app_start/BundleConfig.cs – Leo Javier Aug 28 '15 at 15:33

2 Answers2

2

Yes, why wouldn't you? MVC 4 is still HTML based and supports css, javascript, ...

Some links that may help you get started:

Hope this helps.

Community
  • 1
  • 1
JCS
  • 1,071
  • 2
  • 9
  • 24
0

Indra you can use HTML, CSS, jquery in any web applications. Asp.net MVC is used to build a web application so you can use them here. Similarly its the same for other technologies like Java, php, phyton etc if its a web application then HTML, CSS, jquery can be used since ultimately we will view the application in any of the browser and any page in the browser will be a HTML page only, HTML pages support CSS and Jquery.

Rajshekar Reddy
  • 18,647
  • 3
  • 40
  • 59