Posts by Diego Eis • 181 points
3 posts
-
7
votes2
answers40440
viewsA: How to resize image to container size?
If the image is smaller than the size of the div, the max-width and of max-height will not work, then it is better to put width: 100%; and play with the height to be able to hit image. Place height:…
-
4
votes3
answers3926
viewsA: What is XHTML and when should it be used?
XHTML is HTML written according to XML rules. Since XML is much stricter than HTML, the idea is that you write a syntax without errors. XML is a very generic markup language. Unlike HTML, XML allows…
-
7
votes4
answers1112
viewsA: Is there an XHTML5 (XHTML + HTML5)?
There is no XHTML + HTML5. XHTML was a path taken by W3C to try to restrict the entire Internet code pattern. The idea was for everyone to write valid, semantic code. HTML5, in turn, is a language…