As an editor, I use Aptana. How can I r...">Geek asks and answersTrim empty HTML tagI have this line in my HTML code:<iframe src="http://example.com"></iframe> As an editor, I use Aptana.How can I resolve this warning? What does it mean?"Must trim empty <iframe>."+5html html5 aptanaIonicΔ BizΔu Mar 10 '13 at 16:13source share2 answersThis is because iframethere is no body for the tag .One of the options for removing the warning will put the closing tag on another line:<iframe src="http://example.com"> </iframe> Or adding a space:<iframe src="http://example.com"> </iframe> +3ATOzTOA Mar 10 '13 at 16:18source share, iframe: , , ( ) . , . :<iframe src="http://example.com"><a href="http://example.com"> Some useful title for the page</a></iframe> , Opera - . , . , , , , .(4 2013 .): HTML5 , iframe , Opera ( ) : , - . , Lynx iframe, , , src. iframe .+1Jukka K. Korpela 10 . '13 17:03More articles:Is it possible to remotely debug javascript on an iPad from a Windows machine? - javascriptxcode target dependencies between two projects - xcodeCheck if VBS file is used - fileNSTask subprocess stuck in _dyld_start - objective-cMake the main thread until all the other Qthreads have finished - c ++Memory leak in javacv - javaBitlocker script to unlock a disk - windowsHow to find the program name JNDI EJB programmatically? - java-eeDjango - need datetime fields that can only process a year, as well as year and month values ββ- pythonTcpClient.Close () only works with Thread.Sleep () - c #All Articles
I have this line in my HTML code:
<iframe src="http://example.com"></iframe>
As an editor, I use Aptana.
How can I resolve this warning? What does it mean?
"Must trim empty <iframe>."
<iframe>
This is because iframethere is no body for the tag .
iframe
One of the options for removing the warning will put the closing tag on another line:
<iframe src="http://example.com"> </iframe>
Or adding a space:
, iframe: , , ( ) . , . :
<iframe src="http://example.com"><a href="http://example.com"> Some useful title for the page</a></iframe>
, Opera - . , . , , , , .
(4 2013 .): HTML5 , iframe , Opera ( ) : , - . , Lynx iframe, , , src. iframe .
src