verdrm Posted March 21, 2008 Share Posted March 21, 2008 I need to echo data in the method shown below (it should look like answers to a question): Echo Response 1 Echo Response 2 Echo Response 3 Echo Response 4 Echo Response 5 Echo Response 6 ...and so on. How do I do that using HTML or CSS? Link to comment https://forums.phpfreaks.com/topic/97245-echo-question/ Share on other sites More sharing options...
phpretard Posted March 21, 2008 Share Posted March 21, 2008 This should work... <style> #question{ float:left; width: 49%; } </style> <div id=question> Echo Response 1 </div> <div id=question> Echo Response 2 </div> <div id=question> Echo Response 3 </div> Link to comment https://forums.phpfreaks.com/topic/97245-echo-question/#findComment-497612 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.