+ 2
Do html5 support all web browser?
Please tell me. HTML5 support all web browser without any problems?
14 Antworten
+ 11
almost all browsers
+ 8
Most of the popular ones, yes. Maybe not all versions.
This is disregarding obscure browsers that barely anyone uses.
+ 6
BTW: A browser supports html5,, not the reverse!
(The browser is the program that needs to be updated to be able to understand new versions of script and html)
☺
+ 1
thank for your help
+ 1
if u have mozilla or chrome then no prob
+ 1
pretty much all browsers support html5
+ 1
Not to bash on IE, but only the latest version of it can actualy read all recent HTML5 code
Surprisingly a lot of people still use IE, so if you're gonna make a website you want all/most people to view in all of it's glory, you need to keep that in mind...
But most other browsers such as Opera and Firefox and of course Chrome, it's fine...
+ 1
7.3 Inline function
Calling a function generally causes a certain overhead (stacking arguments, jumps, etc...), and thus for very short functions, it may be more efficient to simply insert the code of the function where it is called, instead of performing the process of formally calling a function.
Preceding a function declaration with the inline specifier informs the compiler that inline expansion is preferred over the usual function call mechanism for a specific function. This does not change at all the behavior of a function, but is merely used to suggest the compiler that the code generated by the function body shall be inserted at each point the function is called, instead of being invoked with a regular function call.
For example, the concatenate function above may be declared inline as:
inline string concatenate (const string& a, const string& b)
{
return a+b;
}
This informs the compiler that when concatenate is called, the program prefers the function to be expanded inline, instead of performing a regular call. inline is only specified in the function declaration, not when it is called.
Note that most compilers already optimize code to generate inline functions when they see an opportunity to improve efficiency, even if not explicitly marked with the inline specifier. Therefore, this specifier merely indicates the compiler that inline is preferred for this function, although the compiler is free to not inline it, and optimize otherwise. In C++, optimization is a task delegated to the compiler, which is free to generate any code for as long as the resulting behavior is the one specified by the code.
Download for more knowledge
https://play.google.com/store/apps/details?id=cpp.programming
0
every up-to-date browser which is almost every browser and all of known browsers such as safari, firefox, google chrome, opera... etc
0
A lot of problems with Internet Explorer 8 and earlier. Use "HTML5Shiv" to fix the problem. It' s a JavaScript walkaround created by Sjored Visscher.
Enjoy! :)
0
yes,but your browser must up-to-date
0
yea obviously😏
0
Most of the popular ones, yes. Maybe not all versions.
This is disregarding obscure browsers that barely anyone uses.
0
yes