Substitution for HTML -
is there programing language can substitute html in making web sites.i don't mean asp,jsp,php or similar.specifically looking web site programing language not based on line semantics.more specifficaly i' m looking add winforms coordinates possibility(positioning elements based on x , y axes).excuse english,if made error. hope understod question.
there isn't.
however, css has absolute positioning allow achieve want.
css
#box { position: absolute; left: 20px; top: 80px }
html
<div id="box"> absolutely positioned! </div>
be advised though it's wrong choice. html fundamentally different forms based systems, it's designed displayed on wide choice of different devices.
maybe show issue you're dealing exactly, , ask specifically.
Comments
Post a Comment