码迷,mamicode.com
首页 >  
搜索关键字:indent    ( 1126个结果
CSS text-indent
text-indent 属性规定文本块中首行文本的缩进。一个作用就是首行文本缩进,一半的文本都是首行缩进两个字符,这里就可以使用text-indent{ text-indent: 24px;}另一个作用是隐藏文本,text-intent允许取赋值{ text-indent: -9999p...
分类:Web程序   时间:2014-09-19 09:56:15    阅读次数:462
css内容样式属性
使用 text-indent 属性,元素首行缩进。一般来说,适用于所有的块级元素,但无法适用于行内元素和类似于图片这样的元素。可以用%、固定值和负值、继承(使用此值,父元素最好要padding相应值)。使用text-align属性,会影响一个元素中的文本行互相之间的对齐方式。(块级和表元素居中要使用...
分类:Web程序   时间:2014-09-13 22:41:26    阅读次数:229
改变 select下拉框 样式
select{outline: none;text-indent: 10px;height: 45px;line-height: 45px;width: 100%;border:1px solid #c0c3c8;border-radius: 5px;display: inline-block;fo...
分类:其他好文   时间:2014-09-04 18:37:49    阅读次数:135
巧用:empty解决webkit核心浏览器text-indent的bug
昨天在项目中遇到要在一个输入框中使用缩进的情况,要用text-indent首行缩进2个文字。然后发现在webkit下,在输入框内容为空的时候,光标位置没有缩进,还是在行首,输入任意字符后,缩进才被激活。HTML代码如下:这里无论是input元素还是textarea,或是其它设置了contentEdi...
分类:Web程序   时间:2014-09-04 14:49:29    阅读次数:160
lua 打印 table 拷贝table
-- 打印tablefunction print_lua_table (lua_table, indent) if lua_table == nil or type(lua_table) ~= "table" then return end local functio...
分类:其他好文   时间:2014-09-03 21:09:27    阅读次数:237
XCode5.1.1如何实现代码块自动排版
1.问题描述 在开发中经常遇到代码块需要排版的情况,如果一行一行缩进就太out了,但在xcode中如何实现还真不知道 2.解决方法 2.1选中需要排版的代码块 2.2单击"Editor | Structure | Re-Indent"菜单项 2.3看看是不是已经得到想要的结果了!!!...
分类:其他好文   时间:2014-08-30 16:26:49    阅读次数:181
vim中的缩进
# 缩进 # 缩进的设置 1. autoindent (ai) > Copy indent from current line when starting a new line (typing in Insert mode or when using the "o" or "O" command). If you do not type anything on the new...
分类:其他好文   时间:2014-08-27 13:16:38    阅读次数:213
CSS 属性之中经常出现的百分比(转)
CSS 的属性值中经常会出现百分比,搞清它们的基数是一件很重要的事情。我特意查看了一下 W3C 的 CSS2.1 标准,在此整理下:百分比单位乘以包含块的宽度 margin, padding, left, right, text-indent, width, max-width, min-width...
分类:Web程序   时间:2014-08-27 10:35:07    阅读次数:254
【技术】字符缩进text-indent失效
未定义:1. display:block; (在行内元素加上display:block; 或者把目标元素放入等块级元素,然后把text-indent样式应用到等块级元素。)2. overflow:hidden;3. text-align:left;4. width5. height6. line-h...
分类:其他好文   时间:2014-08-26 17:07:36    阅读次数:186
css3加载中
.loader { margin: 6em auto; font-size: 10px; position: relative; text-indent: -9999em; border-top: 1.1em solid rgba(255, 255, 255, 0.2); border-...
分类:Web程序   时间:2014-08-20 11:58:02    阅读次数:271
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!