html中常用的一些英文单词

  • 格式:pdf
  • 大小:75.78 KB
  • 文档页数:2

html中常⽤的⼀些英⽂单词

html:中常见英⽂笔记

header 头部/页眉;

index ⾸页/索引;

logo 标志;

nav/sub_nav 导航/⼦导航;

banner 横幅⼴告;

main/content 主体/内容;

container/con 容器;

wrapper/wrap 包裹(类似于container);

menu 菜单;

sub_menu/second_menu ⼦菜单/⼆级菜单;

list 列表;

section 分区/分块(类似于div);

article ⽂章;

aside 侧边栏/⼴告;

footer 页脚/底部;

title/sub_title 标题/副标题;

news 新闻;

hot 热点;

pro 产品(product);

company 公司;

msg/info 信息(message)/消息;

ads ⼴告(advertisements);

icon ⼩图标;

img 图⽚(image);

copyright 版权;

contact_us 联系我们;

friend_link 友情链接;

tel 联系电话(telephone);

address 地址;

⼆、CSS样式(style)

CSS 层叠样式表 (Cascading Style Sheets) ;

background 背景;

position 位置/定位;

relative/absolute/fixed 相对定位/绝对定位/固定定位;

float 浮动;

clear 清除;

vertical-align: middle/top/bottom; 垂直居中/上/下;

line-height ⾏⾼;

margin 外边距;

padding 内边距;

border 边框;

solid/dashed/dotted 实线/线虚线/点虚线;

border-radius 圆⾓;

shadow 阴影;

display 展⽰;

hidden 隐藏;

block/inline-block 块元素/⾏内块;

overflow 溢出;

cursor 光标;

animation 动画;

css sprites 雪碧图/图⽚精灵;

column 分列;

flex 弹性(布局);

top 上

bottom 下

left 左

right 右

三、表单(form)与表格(table)form 表单;

action ⾏为;

method ⽅式/⽅法;

input 输⼊框;

label 标签;

password 密码;

radio 单选框;

checkbox 复选框;

btn 按钮(button);

submit/reset 提交/重置;

textarea ⽂本域;

select/option 选择框/选择项;

placeholder 占位符(起提⽰作⽤);

search 搜索;

icon ⼩图标;

autofocus ⾃动聚焦;

disabled 禁⽤;

checked 选中(单选框/复选框);

selected 默认选择项(下拉选择框);

required 必填项;

readonly 只读;

table 表格;

thead/tbody/tfoot 表格标题/主体/底部;

colspan 跨列;

rowspan 跨⾏;

cellspacing 单元格间距(类似于margin);

cellpadding 单元格边距(类似于padding);

border-collapse: collapse; 边框合并(⽤于table上);