I am using @font-face in my css. Mine is an ASP.NET webapplication the doctype used for the page is
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The css is as follows
@font-face { font-family: 'ML-TTLeela';
src: url('../Styles/Font/mlll0ntt.eot') ;/* IE9 Compat Modes */
src: url('../Styles/Font/mlll0ntt.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('../Styles/Font/mlll0ntt.woff') format('woff'), /* Modern Browsers */
url('../Styles/Font/mlll0ntt.ttf') format('truetype'), /* Safari, Android, iOS */
url('../Styles/Font/mlll0ntt.svg#svgFontName') format('svg'); /* Legacy iOS */ }
Am using VS 2010 and CSS is validated against CSS 2.1. how can i change it to CSS 3? @font-face doesnot seems working too.