-
Notifications
You must be signed in to change notification settings - Fork 0
css & html & quirks in popular browsers #4
Copy link
Copy link
Open
Description
Caveat For All
-
input doesn't need
line-heightto make words vertical centre -
display:inline-block
when usingvertical-alignon this elements, browsers have the save defaultbaselinenottop,
however, under some circumstance, browsers may have a different render forbaseline,
setvertical-alignexplicitly -
image-map, an image with clickable areas
<!-- ************************************************************************
In HTML5, if the id attribute of the <map> tag is also specified,
it must have the same value as the name attribute
************************************************************************ -->
<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun">
<area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury">
<area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus">
</map>Reactions are currently unavailable