- 締切済み
<noframes>が携帯で表示されません
私は携帯でネットができないので確認できないのですが 携帯で閲覧するとフレームサポートやブラウザがどうのこうのと表示が出て、 見れない方がいらっしゃるそうです。 ちゃんと正しく表示されるひともいるのですが…。 原因が何か教えていただけないでしょうか? ↓ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> </head> <frameset cols="242,*" border="0"> <frame src="menu.html" scrolling="no"> <frame src="main.html" name="m" scrolling="auto"> <noframes> <body> HP内容 </body> </noframes> </frameset> </html>
- みんなの回答 (1)
- 専門家の回答
みんなの回答
- 神崎 渉瑠(@taloo)
- ベストアンサー率44% (1016/2280)
回答No.1
noframesは<frameset>の外に。 あと<body>は不要。 <frameset cols="242,*" border="0"> <frame src="menu.html" scrolling="no"> <frame src="main.html" name="m" scrolling="auto"> </frameset> <noframes> HP内容 </noframes>
補足
ご回答ありがとうございます。 ですがこのソースですとページが白紙になってしまうそうです…。