473,394 Members | 1,773 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

NS4 and inline styles?

I am building a table with style samples from 3 CSS files.
We currently have 3 CSSs (NS4, IE and SUN) as our audience is diverse
(banking industry - old systems and old browsers for about 50% of the
audience).
I was told to create a table displaying the style used for each class
and how they display.
So I have 3 columns and each column has the class name being displayed
with the style for each of the systems.
I am using inline styling but NS4 won't show any of the styles
appropriately.
Is there any work around that issue?
I am currently applying the style to the cell. Should I apply the style
to the text using<span>?
Will this work on NS4?

Thanks,

FayeC

May 11 '06 #1
4 1543
On 11 May 2006 08:28:40 -0700 FayeC <fl*************@scotiacapital.com> wrote:

| I am building a table with style samples from 3 CSS files.
| We currently have 3 CSSs (NS4, IE and SUN) as our audience is diverse
| (banking industry - old systems and old browsers for about 50% of the
| audience).
| I was told to create a table displaying the style used for each class
| and how they display.
| So I have 3 columns and each column has the class name being displayed
| with the style for each of the systems.
| I am using inline styling but NS4 won't show any of the styles
| appropriately.
| Is there any work around that issue?
| I am currently applying the style to the cell. Should I apply the style
| to the text using<span>?
| Will this work on NS4?

NS4 is so defective with CSS as to be unusable without turning CSS off.
This, combined with no suitable browsers until recent versions of Firefox,
is why I've not even used CSS on web sites until the past couple months.
I would never recommend a browser to someone that I would not use myself.

--
-----------------------------------------------------------------------------
| Phil Howard KA9WGN | http://linuxhomepage.com/ http://ham.org/ |
| (first name) at ipal.net | http://phil.ipal.org/ http://ka9wgn.ham.org/ |
-----------------------------------------------------------------------------
May 11 '06 #2
well...the <span> trick works fine.
Unfortunately we can't dictate what our viewers have to use in order to
see the pages.
It's for an intranet and the idea is to load more viewable styles
depending on the browser's support to css...which in some cases might
mean a netscape 4 browser in a SUN system...
It does work so far and the chart I was doing is just for the design
team to use as a reference.
So for those looking for the same answer...use the <span> tag to apply
the style or class directly to the text.

FayeC

May 11 '06 #3
FayeC wrote:
I am building a table with style samples from 3 CSS files.
We currently have 3 CSSs (NS4, IE and SUN) as our audience is diverse
(banking industry - old systems and old browsers for about 50% of the
audience).
I was told to create a table displaying the style used for each class
and how they display.
So I have 3 columns and each column has the class name being displayed
with the style for each of the systems.
I am using inline styling but NS4 won't show any of the styles
appropriately.
Is there any work around that issue?
I am currently applying the style to the cell. Should I apply the style
to the text using<span>?
Will this work on NS4?


NS 4.x had problems with inline styles. If you use a stylesheet, most of
your problems should go away. Of course, NS 4.x had limitations and
problems, but basic CSS worked well with stylesheets.

--
Gus
May 11 '06 #4
On Thu, 11 May 2006 16:15:59 -0400 Gus Richter <gu********@netscape.net> wrote:
| FayeC wrote:
|> I am building a table with style samples from 3 CSS files.
|> We currently have 3 CSSs (NS4, IE and SUN) as our audience is diverse
|> (banking industry - old systems and old browsers for about 50% of the
|> audience).
|> I was told to create a table displaying the style used for each class
|> and how they display.
|> So I have 3 columns and each column has the class name being displayed
|> with the style for each of the systems.
|> I am using inline styling but NS4 won't show any of the styles
|> appropriately.
|> Is there any work around that issue?
|> I am currently applying the style to the cell. Should I apply the style
|> to the text using<span>?
|> Will this work on NS4?
|
| NS 4.x had problems with inline styles. If you use a stylesheet, most of
| your problems should go away. Of course, NS 4.x had limitations and
| problems, but basic CSS worked well with stylesheets.

Basic CSS (well, maybe very basic CSS) worked in NS 4. However, complex
CSS was being used in a sufficiently large number of sites that caused
NS 4 to display things even worse, or in some cases actually crash. Of
course the blame lies with NS 4, not with CSS or the web sites as long
as they were standards compliant. That's why I had to leave CSS turned
off for NS 4. Thus I didn't use CSS at all in my web pages.

--
-----------------------------------------------------------------------------
| Phil Howard KA9WGN | http://linuxhomepage.com/ http://ham.org/ |
| (first name) at ipal.net | http://phil.ipal.org/ http://ka9wgn.ham.org/ |
-----------------------------------------------------------------------------
May 12 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: geotso | last post by:
Hi I'm trying to hide from printing a specific element of a page but I don't know how (and if) I could. Here is an example of what I'm trying to do: <h1>Hidden in print mode</h1> <p>Also...
7
by: David Filmer | last post by:
Greetings. I want to localize a style definition to a portion of an HTML document, but use an external stylesheet. It seems that I can only do <style><!-- @import...
5
by: Viken Karaguesian | last post by:
Hello all, It seems to me that IE ignores other styles altogether when an inline style is used. As an example, check my site (in my signature file). In the "Latest News and Headlines" you can...
1
by: appleboy | last post by:
Hello to all, and sorry about my poor english :) I am trying to assign inline styles thru javascript or directly into the element parameters. E.j: <span style="font-size:5em;"> I would like...
5
by: Stan McCann | last post by:
link: https://ssl.perfora.net/famousphone.com/ css: http://famousphone.com/styles.css The menu list on the right top (Shop by Category) is where I'm having difficulties. I'm trying to visually...
3
by: rn5a | last post by:
I came across the following line in an ASP.NET article: Each AlternatingItemStyle in a DataGrid renders the style inline. What does rendering the style "inline" mean?
5
by: Bubba | last post by:
I need to use an inline css tag for a few links that will not behave like the a:link and a:hover attributes in my stylesheet. I want to add a special link color with underline and a mouseover...
0
by: Mike | last post by:
Hi, I have a strange problem: I wrote a reverse proxy that redirects pages to a local or remote server. Everything seems to work fine, but I have a strange problem with inline styles. In my...
2
by: Kevin R | last post by:
Wondering why my inline style is failing here is the content.html page that I am calling. <!-- content4.html --> <div style"width: 770px; text-align:left;"> <h1Page 4 </h1> <p>Lorem ipsum...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.