在TextArea HTML中标记为标题

时间:2017-02-23 03:22:48

标签: javascript html css html-framework-7

enter image description here

我正在使用Framework7构建混合移动应用UI,这是我要实现的截图。

该文本将输入textarea实体。但我不确定如何实现标题“描述”,使其工作如下。

任何人都可以帮助我吗?提前谢谢。

1 个答案:

答案 0 :(得分:3)

textarea {
		position:absolute;
	    
	    text-indent: 80px;
	}
	label { 
	 	position:relative;   
	    
	}
<textarea placeholder="Textarea placeholder"></textarea>
<label for="qual">Description:</label>

希望这有帮助!