惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
CXSECURITY Database RSS Feed - CXSecurity.com
K
Kaspersky official blog
A
Arctic Wolf
Attack and Defense Labs
Attack and Defense Labs
L
LINUX DO - 热门话题
N
News | PayPal Newsroom
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
L
Lohrmann on Cybersecurity
PCI Perspectives
PCI Perspectives
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
The Last Watchdog
The Last Watchdog
B
Blog RSS Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
W
WeLiveSecurity
Know Your Adversary
Know Your Adversary
博客园 - Franky
T
Tenable Blog
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Help Net Security
Help Net Security
WordPress大学
WordPress大学
T
The Exploit Database - CXSecurity.com
www.infosecurity-magazine.com
www.infosecurity-magazine.com
博客园 - 司徒正美
阮一峰的网络日志
阮一峰的网络日志
D
Darknet – Hacking Tools, Hacker News & Cyber Security
H
Heimdal Security Blog
TaoSecurity Blog
TaoSecurity Blog
S
Security Affairs
J
Java Code Geeks
小众软件
小众软件
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Apple Machine Learning Research
Apple Machine Learning Research
NISL@THU
NISL@THU
O
OpenAI News
The Cloudflare Blog
月光博客
月光博客
Google Online Security Blog
Google Online Security Blog
V
V2EX
罗磊的独立博客
美团技术团队
博客园 - 三生石上(FineUI控件)
Security Latest
Security Latest
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
C
Cyber Attacks, Cyber Crime and Cyber Security
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Cyberwarzone
Cyberwarzone
L
LINUX DO - 最新话题
Hacker News - Newest:
Hacker News - Newest: "LLM"
大猫的无限游戏
大猫的无限游戏

博客园 - looping

小米公司招聘前端--待遇不错 插入排序 insertion_sort js实现 JSLint for EditPlus 检验js语法 ECMA-262-3 深入解析.第四章. 作用域链 Vim 简洁手册 在 JavaScript 中监听 IME 键盘输入事件 英文已如此搞笑,翻译却更加残暴 古文中惊艳的句子 Nicholas C. Zakas vs John Resig 一场关于YUI3/jQuery的精彩辩论 浅谈 Mousewheel 事件 CSS HACK org.hibernate.TransientObjectException: object references an unsaved t... jquery 1.4 append 用法 获取文本中img路径(不是dom中的) [JavaScript]ECMA-262 深入解析 IIS 7.5 下PHP(FastCGI模式)配置手记 Remove duplicates from Array移除数组重复元素 js 翻转颜色 difference between echo and print in php
css 圆角效果,2例
looping · 2010-08-03 · via 博客园 - looping

1.你可以切成4个图,或者两个图。如下图

image

image 

2.代码

html

<div class="box">
    <div class="outer">
        <div class="inner">
            <h2>headlines</h2>
            <p>Content ,fdascot<br />
            Content ,fdascot<br />
            Content ,fdascot<br />
            Content ,fdascot<br />
            </p>
        </div>
</div>
</div>
<div class="box2">
<div class="outer2">
 <div class="inner2">
       <h2>headlines</h2>
       <p>Content ,fdascot<br />
            Content ,fdascot<br />
            Content ,fdascot<br />
            Content ,fdascot<br />
            </p>
 </div>
</div>
</div>

css

 .box{background:url(images/bottom_left.gif) no-repeat left bottom;width:300px;}
    .outer{background:url(images/bottom_right.gif)  no-repeat right bottom;padding-bottom:5%;}
    .inner{background:url(images/top_left.gif) no-repeat left top;padding-left:20px;}
    .inner h2{background:url(images/top_right.gif) no-repeat right top;padding-top:5% ;}
    
    .box2{background:url(images/corner-left.gif) no-repeat left bottom;width:300px;}
    .outer2{background:url(images/corner-right.gif)  no-repeat right bottom;padding-bottom:5%;}
    .inner2{background:url(images/corner-left.gif) no-repeat left top;padding-left:20px;}
    .inner2 h2{background:url(images/corner-right.gif) no-repeat right top;padding-top:5%;}

3,最终效果

image