搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
CSS 教程
CSS 基础教程
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS3 scale() 方法示例 - div.cn 基础教程</title> <style> img { -webkit-transform: scale(1.5); /* Chrome, Safari, Opera */ -moz-transform: scale(1.5); /* Firefox */ -ms-transform: scale(1.5); /* IE 9 */ transform: scale(1.5); /* Modern Browsers */ opacity: 0.5; } .box{ margin: 50px; width:103px; height:130px; background: url("/run/images/octopus.png") no-repeat; } </style> </head> <body> <div class="box"> <img src="/run/images/octopus.png" alt="Octopus"> </div> </body> </html>
运行结果