CSS3 not working on visual studio 2010 - css

I have a solution built in Visual Studio 2008 and wish to add some new features of CSS3, hence I converted the solution to Visual Studio 2010.
Even after its successful conversion I am still not able to see the CSS3 features. I need to use border-radius property of CSS3.
Can I use it on the solution converted from Visual Studio 2008 to Visual Studio 2010?
Please help.

Maybe the visual studio doesn't auto-complete the code but the css3 conditions will work on any browser compatible (Chrome, FF, EI9, Opera, Safari),since it's all CSS and not compiled by Visual Studio.
Give it a try on one of those browsers (:

I believe there is an update coming that will address that issue, but you should be able to view any CSS3 change when running the site.

Related

How to use <Video></Video> in VS2010

i am trying to make Video as my backgroud for my WebForm in visual studio 2010 ultimate but when i use it always says to me that validation (xhtml 1.0 transitional) element 'video' is not supported so how can i fix it.
You will have to use windows media player to play video in visual studio 2010. it's hard to explain with words so go to this video you can see how you can add video in visual studio 2010. here

Is it possible to update Visual Studio's CSS validation?

I'm using VS2013 and am getting a lot of incorrect feedback on CSS3 syntax (particularly flex elements). Is the validation schema baked into a VS release or can it be updated somehow?
I had this problem in the past with Visual Studio 2010 (only CSS 2.1).
The short answer is yes, it is possible to add new schemas and use them instead of the default ones.
You can take a look at the visual studio gallery, but I cannot confirm if this will work on later versions of Visual Studio.
http://visualstudiogallery.msdn.microsoft.com/7211bcac-091b-4a32-be2d-e797be0db210

Is there a visual studio add-in that can check if CSS classes/id's are not in use across the solution?

Just as the title states.
If not, any good web services you've used to cleanup bloated stylesheets?
Don't know about Visual Studio but there are some FireFox plugins.
Dust-Me Selectors is a Firefox plugin that will find unused styles on a given web page. I don't know of any Visual Studio plugins that will do this.

how to enable script debugging in visual studio 2008 when using Firefox

I'm using Firefox as my default browser and I'm trying to debug java script in side asp.net page visual studio 2008 with Firefox browser.
how to enable script debugging in visual studio 2008 when using Firefox?
by the way, I installed JavaScript Debugger plug-in for Firefox.
Unfortunately there's no way to attach to a non-IE browser in Visual Studio unless someone knows of a trick I don't. You'll want to either use the infinitely useful Firebug Extension for Firefox or the more feature rich Venkman debugger.
I have had issues with scripts being cached in FF while you're developing, so I would suggest making frequent use of the [CTRL][SHIFT] + Delete shortcut to clear your cache. Another trick I use is to insert
debugger;
into your script where you want to make sure you break into the debugger. I'm sure this works in Firebug and may also in Venkman.
Happy debugging.

Visual Studio 2008 Css 3 support

Visual Studio 2008 supports CSS 1.0, 2.0 and 2.1 only. If I try to add sth. like text-shadow property to a class then it is outlined as invalid.
Is there a Css definition or something that I can download and make vs recognize those new properties?
Visual Studio 2008 doesn't support it because CSS 3 is not yet finalized and there are many parts of it that browsers do not yet support. However, you can create your own schema as outlined in Mikhail Arkhipov (MSFT)'s WebLog.

Resources