ASP.Net - Visual Studio - CSS?

  • Thread starter Thread starter Rob Meade
  • Start date Start date
R

Rob Meade

Hi all,

I was used to in my application before perhaps writing some HTML like this :

<font class="normaltext">Hello World!</font>

etc

With Visual Studio - the intellisense does not show a 'class' item - I'm
assuming as this is the HTML view of the page, that when I run it as long as
I've linked in the relevant stylesheet at the top of the page everything
will still be fine.

I'm just wondering why its not there? Is this not the norm for applying
styles? I saw the style item in the list - which I've noticed it adds a lot
of if you do not have flowcontrol on the page (positioning etc)..

Any advice appreciated.

Regards

Rob
 
...
I'm just wondering why its not there?

It would seem that it had not added them because I had not already added my
<link rel=""> etc at the top of the page...

Quite clever!

Rob
 
Rob Meade said:
Hi all,
<font class="normaltext">Hello World!</font>

<span class="normaltext">Hello World!</span>

I see you answered your own question as to the details of the class.

fragg
 
Back
Top