GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   How To Tell HTML From HTML5 (https://gfy.com/showthread.php?t=1058316)

ClickCastX 02-20-2012 07:24 AM

How To Tell HTML From HTML5
 
http://s3-ec.buzzfed.com/static/enha...29446793-8.jpg

Fletch XXX 02-20-2012 07:33 AM

simple background gradients dont work in ie, its silly.

i just coded the elevatedx mobile paysite demo and had to work in all the ie bullshit... fuck IE

seeandsee 02-20-2012 08:23 AM

IE lol, i didt saw anybody using it for years, even "i dont fucking know nothing about comp" people...

fris 02-20-2012 07:33 PM

IE is such a shitty web browser, none of the good effects will even work on it

The Truth Hurts 02-20-2012 09:47 PM

Quote:

Originally Posted by Fletch XXX (Post 18770235)
simple background gradients dont work in ie, its silly.

use PIE works great.

TheDoc 02-20-2012 10:06 PM

Just put a div inside the html5 tag, rather than using html5 for the structure, use it for the markup layout... then it will work in ie.

TheDoc 02-20-2012 10:13 PM

Just gota cover all the browsers with the gradient stuff... can also drop in a png with a gradient and opacity set on it, called as a background in css.

Code:

filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#000000' );
filter:progid:DXImageTransform.Microsoft.gradient( startColorstr=’#333333’, endColorstr=’#000000’, GradientType=0 );
background: -webkit-gradient( linear,left top,left bottom,color-stop( 0%, #333333 ), color-stop( 100%, #000000) );
background: -moz-linear-gradient( top, #333333, #000000 );
background-image: -o-linear-gradient( #333333, #000000 );
background: -webkit-gradient( linear, left top, left bottom, from( #333333 ), to( #000000 ) );
background: -moz-linear-gradient( top, #333333, #000000 );


FlexxAeon 02-20-2012 10:38 PM

holy shit :1orglaugh

BSleazy 02-20-2012 11:07 PM

fun stuff.

Mutt 02-21-2012 12:17 AM

:1orglaugh


piece of shit browser

sambucas 02-21-2012 02:51 AM

HTML5 is a myth

Eldon Hoke 02-21-2012 03:00 AM

Quote:

Originally Posted by Fletch XXX (Post 18770235)
simple background gradients dont work in ie, its silly.

i just coded the elevatedx mobile paysite demo and had to work in all the ie bullshit... fuck IE

You should have used Chrome Frame:-

http://code.google.com/chrome/chromeframe/

Jakez 02-21-2012 03:03 AM

:1orglaugh:1orglaugh:1orglaugh

Still blows my mind daily how fucked up a browser can be when they have some of the most intelligent minds on the planet employed and plenty of other browsers to take notes from.

Quote:

Originally Posted by Eldon Hoke (Post 18771941)

:1orglaugh

"Google Chrome Frame is an open source plug-in that seamlessly brings Google Chrome's open web technologies and speedy JavaScript engine to Internet Explorer."

LMFAO! The other browsers even feel bad for them.. it's so pathetic..

HerPimp 02-21-2012 03:34 AM

check out opera

Eldon Hoke 02-21-2012 03:41 AM

Quote:

Originally Posted by Jakez (Post 18771943)
:1orglaugh:1orglaugh:1orglaugh

Still blows my mind daily how fucked up a browser can be when they have some of the most intelligent minds on the planet employed and plenty of other browsers to take notes from.


:1orglaugh

"Google Chrome Frame is an open source plug-in that seamlessly brings Google Chrome's open web technologies and speedy JavaScript engine to Internet Explorer."

LMFAO! The other browsers even feel bad for them.. it's so pathetic..

What to piss off IE6 users?

Just put this code in your CSS. Their browser will automatically crash:-

Code:

* {position: relative;}

Jakez 02-21-2012 03:50 AM

Quote:

Originally Posted by Eldon Hoke (Post 18771978)
What to piss off IE6 users?

Just put this code in your CSS. Their browser will automatically crash:-

Code:

* {position: relative;}

Funny, but why would I want to piss off my surfers? The point is that Microsoft needs to get their shit together, not surfers.

Eldon Hoke 02-21-2012 04:09 AM

Quote:

Originally Posted by Jakez (Post 18771987)
Funny, but why would I want to piss off my surfers? The point is that Microsoft needs to get their shit together, not surfers.

Would love to see conversion ratios of just purely IE6 users.

Yes, if Microsoft struggle to make a stable web browser, what does that say about their operating system?

Look at this comparison chart:-

http://html5test.com/results.html

IE9 is still miles behind. Microsoft need to get their shit together and implement a stealthy auto update feature similar to Chrome.

Fletch XXX 02-21-2012 05:59 AM

Guys im well aware to cross browser code for ie... Just did elevatedx mobile paysite demo and coded it for multiple gradients cross browser...

TheDoc 02-21-2012 06:10 AM

I don't make websites for ie6 anymore.... the amount of sales from ie6 vs. time put in for corrections, is not worth it, and hasn't been for about 3 years. Correcting ie6 basically means you're working for free.

With all other IE versions, as long as the site renders, I don't care what it looks like.... I don't correct gradients, rounded corners, etc... and ratios don't improve when I do.

As long as the site works on the browser, the mission is complete.

Barry-xlovecam 02-21-2012 06:15 AM


Fletch XXX 02-21-2012 06:17 AM

Quote:

Originally Posted by TheDoc (Post 18772158)
I don't make websites for ie6 anymore.... the amount of sales from ie6 vs. time put in for corrections, is not worth it, and hasn't been for about 3 years. Correcting ie6 basically means you're working for free.

With all other IE versions, as long as the site renders, I don't care what it looks like.... I don't correct gradients, rounded corners, etc... and ratios don't improve when I do.

As long as the site works on the browser, the mission is complete.

this is basically what I meant in my original post, every little thing you gotta change for IE, simple gradients from webkit should work across all browsers LOL not have to code three lines for every browser, fuck that... the most simplest of things do not render in IE, although I cater to client needs so I code it right hehehe

TheDoc 02-21-2012 06:28 AM

Quote:

Originally Posted by Fletch XXX (Post 18772173)
this is basically what I meant in my original post, every little thing you gotta change for IE, simple gradients from webkit should work across all browsers LOL not have to code three lines for every browser, fuck that... the most simplest of things do not render in IE, although I cater to client needs so I code it right hehehe

I will spend time making sure a site is correct if it's for local business, for sure in smaller cities and towns. Those people love ie, old ass versions of ie at that... then again, most of those sites are rather basic.

But any other sites, I don't care what the client wants, they can pay someone else to do it, because the hours vs work put in, simply isn't worth it.

Eldon Hoke 02-21-2012 06:34 AM

Quote:

Originally Posted by Fletch XXX (Post 18772173)
this is basically what I meant in my original post, every little thing you gotta change for IE, simple gradients from webkit should work across all browsers LOL not have to code three lines for every browser, fuck that... the most simplest of things do not render in IE, although I cater to client needs so I code it right hehehe

It's because the HTML5/CSS3 specs are still in development. They are waiting for vendors to come up with new ideas before a universal standard is implemented. Then you wont have to deal with prefixes, like how CSS2 currently works (without the IE hacks) ;).

This is a good workaround:- http://leaverou.github.com/prefixfree/

potter 02-21-2012 08:18 AM

Quote:

Originally Posted by Eldon Hoke (Post 18772187)
like how CSS2 currently works (without the IE hacks) ;).

lulz. Even a ton of CSS2 is broken in IE6/7.

geel 02-21-2012 09:13 AM

Min width / max width in all browsers:

Code:

min-width:940px;max-width:1200px;
Min width / max width in Internet Explorer:

Code:

width: expression(document.body.clientWidth < 940? "940px" : document.body.clientWidth > 1200? "1200px" : "auto");
lol?


All times are GMT -7. The time now is 02:40 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc