Position adjustment of PHP output information
按键盘手指磨破皮
按键盘手指磨破皮 2017-07-29 22:56:00
0
1
1902

After writing the html template and introducing the PHP file, I found that the echo output position is displayed in the header. How to adjust the echo output text to the specified position you want?

If you directly add a div to the echo, it is difficult to combine the layout with HTML. How is it usually done?

按键盘手指磨破皮
按键盘手指磨破皮

reply all(1)
正念的奇迹

Define an id to store the div information, for example:

#apDiv1 {

position:absolute;

left:94px;

top:80px;

width:105px;

height:102px;

z-index:1;

}

After, <div id="apDiv1"><?php echo 'abcd'; ?></div>

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template