<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="css.aspx.cs" Inherits="Nexocial.Sample.css" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>CSS学习</title> <style type="text/css"> .workSpacing { /* 单词之间间距 */ letter-spacing:3px; /* 定义以空格间隔文字的间距(就是空格本身的宽度) */ word-spacing:50px; /* 定义文本的大小写状态 capitalize首字母大写 | uppercase大写 | lowercase小写 | none | inherit */ text-transform:capitalize; /*定义首行缩进*/ text-indent:30px; white-space:pre; } </style> </head> <body> <form id="form1" runat="server"> <div> <div class="workSpacing">Imy sdfle fesdf fe fslfe</div> </div> </form> </body> </html>
记录学习点滴...,坚持每天让自己的技能增加1%,默默的坚持下去吧!:-)