abubaker0000 Posted October 13, 2014 Share Posted October 13, 2014 how can make the text box like line as in the photo Link to comment https://forums.phpfreaks.com/topic/291608-how-can-i-make-a-text-box-as-line/ Share on other sites More sharing options...
cyberRobot Posted October 13, 2014 Share Posted October 13, 2014 You could use CSS to hide the border of the form field. Then place a border beneath content element that holds the field and label. Note that the search box on the CSS Tricks website (http://css-tricks.com/) is styled that way. You could dig through the source code to see how it's done. Link to comment https://forums.phpfreaks.com/topic/291608-how-can-i-make-a-text-box-as-line/#findComment-1493476 Share on other sites More sharing options...
CroNiX Posted October 13, 2014 Share Posted October 13, 2014 Just hide the left/top/right border of the form fields Link to comment https://forums.phpfreaks.com/topic/291608-how-can-i-make-a-text-box-as-line/#findComment-1493478 Share on other sites More sharing options...
abubaker0000 Posted October 13, 2014 Author Share Posted October 13, 2014 how I can hide it ? Link to comment https://forums.phpfreaks.com/topic/291608-how-can-i-make-a-text-box-as-line/#findComment-1493486 Share on other sites More sharing options...
cyberRobot Posted October 13, 2014 Share Posted October 13, 2014 You could do something like this: input { border:0; border-bottom:1px solid #666; } Link to comment https://forums.phpfreaks.com/topic/291608-how-can-i-make-a-text-box-as-line/#findComment-1493487 Share on other sites More sharing options...
abubaker0000 Posted October 14, 2014 Author Share Posted October 14, 2014 I do it but in mouse click(focus) the border shadow is visible Link to comment https://forums.phpfreaks.com/topic/291608-how-can-i-make-a-text-box-as-line/#findComment-1493503 Share on other sites More sharing options...
cyberRobot Posted October 14, 2014 Share Posted October 14, 2014 I do it but in mouse click(focus) the border shadow is visible Perhaps one of the following articles will help: https://www.google.com/#q=css%20input%20border%20shadow Link to comment https://forums.phpfreaks.com/topic/291608-how-can-i-make-a-text-box-as-line/#findComment-1493504 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.