纯css无js实现一个便签管理系统
代码语言:html
所属分类:其他
代码描述:纯css无js实现一个便签管理系统
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <style> @import url(https://fonts.googleapis.com/css?family=Lato:300,400,700); body { margin: 0; background: #245; font-family: 'Lato', Calibri, Arial, sans-serif; color: #333; font-size: 22px; -webkit-font-smoothing: antialiased; } ul { margin: 0; padding: 0; } li { min-width: 240px; float: left; position: relative; width: 18%; background: #fff; margin: 10px 1.5% 0 1.5%; border-left: 1% solid #D4A464; padding: 2%; list-style-type: none; white-space: pre-wrap; /* css-3 */ word-wrap: break-word; /* Internet Explorer 5.5+ */ white-space: normal; transition: all 200ms ease-in-out; } li:before { position: absolute; top: 0; right: 0; content: ''; background: #245; border-right: 20px solid transparent; border-bottom: 20px solid #D4A464; .........完整代码请登录后点击上方下载按钮下载查看
网友评论0