search
HomeWeb Front-endCSS TutorialCSS basic tutorial: CSS image and text mixing, image signature, multi-image splicing and image special effects examples

This article introduces CSS basic tutorials: CSS image and text mixing, image signature, multi-image splicing and image special effects examples

After learning the positioning and floating of CSS layout, we can easily create a lot of layout and content Splicing. Today I will do a few simple examples to show the convenience and ease of use of the now popular p+CSS layout. After learning the positioning and floating of CSS layout, we can easily make a lot of layout and content splicing. Today I will do a few simple examples to show the convenience and ease of use of the now popular p+CSS layout. By the way, let’s talk about the new style attributes box-shadow and transform attributes of CSS3.

A mix of pictures and text

<!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>    
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />    
<title>CSS布局之图文混排</title>    
<style type="text/css">    
#test {    
border:#FF00FF solid 2px;    
width:650px;    
height:460px;    
background-color:#CCCCCC;    
margin:auto;    
}    
#img {    
padding-top:3px;    
float:left;    
}    
img {    
width:300px;    
height:350px;    
}    
#text {    
color:#0000FF;    
font-size:18px;    
font-family:"微软雅黑";    
}    
</style>    
</head>    
<body>    
<p id="test">    
<p id="img">    
<img  src="/static/imghwm/default1.png"  data-src="6.jpg"  class="lazy"   / alt="CSS basic tutorial: CSS image and text mixing, image signature, multi-image splicing and image special effects examples" >    
</p>    
<p id="text"> 高圆圆,中国女演员,1979年10月5日出生于北京市丰台区云岗一个普通的知识分子家庭。1996年高圆圆被广告公司发掘,随后拍摄了大量广告,成为了广告圈中的模特。1997年高圆圆出演了她的第一部电影《爱情麻辣烫》,从此开始了她的演员生涯。2001年高圆圆参演的电影《十七岁的单车》获得柏林国际电影节最佳影片银熊奖。2003年高圆圆首次尝试古装武侠剧,在《倚天屠龙记》电视剧中饰演峨眉派掌门周芷若。2005年主演的电影《青红》获得戛纳国际电影节评审团大奖,同年成为荷兰国际球根花卉中心中国首届百合小姐。2008年到2009年,拍摄电影《南京!南京!》,该片获圣塞斯蒂安国际电影节最佳电影金贝壳奖。2011年凭借电影《单身男女》获得香港电影金像奖最佳女主角提名。2012年主演陈凯歌导演的影片《搜索》。2013年高圆圆主演的视剧《咱们结婚吧》在央视、湖南卫视黄金档播出。2014年主演的爱情电影《一生一世》票房突破两亿。电影《君子道》已定档期2015年国庆档。    
</p>    
</p>    
</body>    
</html>



##Rendering:


CSS basic tutorial: CSS image and text mixing, image signature, multi-image splicing and image special effects examples

##Second image signature

<!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>    
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />    
<title>CSS布局之图像签名</title>    
<style type="text/css"> 
#test { 
border:#FF00FF solid 2px;    
width:720px;    
position:absolute;/*让文字不会脱离图片*/
top:50px;    
}    
img {    
width:720px;    
height:480px;    
} 
#text { 
color:#0000FF;    
font-size:24px;    
font-family:"华文隶书";    
position:absolute;    
bottom:50px;    
right:50px;    
}    
</style>    
</head>    
<body>    
<p id="test">    
<p id="img">    
<img  src="/static/imghwm/default1.png"  data-src="10.jpg"  class="lazy"   / alt="CSS basic tutorial: CSS image and text mixing, image signature, multi-image splicing and image special effects examples" >    
</p>    
<p id="text">    
国民女神————高圆圆    
</p>    
</p>    
</body>    
</html>



##Rendering:


CSS basic tutorial: CSS image and text mixing, image signature, multi-image splicing and image special effects examples

三多图 splicing


<!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>    
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />    
<title>CSS布局之图片拼接</title>    
<style type="text/css"> 
#box { 
margin:auto;    
height:600px;    
width:690px;    
}    
.test {    
height:300px;    
width:690px;    
}    
.img {    
height:300px;    
width:230px;    
float:left;    
}    
img {    
height:300px;    
width:230px;    
}    
</style>    
</head>    
<body>    
<p id="box">    
<p class="test">    
<p class="img"><img  src="/static/imghwm/default1.png"  data-src="16.jpg"  class="lazy"   / alt="CSS basic tutorial: CSS image and text mixing, image signature, multi-image splicing and image special effects examples" ></p>    
<p class="img"><img  src="/static/imghwm/default1.png"  data-src="17.jpg"  class="lazy"   / alt="CSS basic tutorial: CSS image and text mixing, image signature, multi-image splicing and image special effects examples" ></p>    
<p class="img"><img  src="/static/imghwm/default1.png"  data-src="18.jpg"  class="lazy"   / alt="CSS basic tutorial: CSS image and text mixing, image signature, multi-image splicing and image special effects examples" ></p>    
</p>    
<p class="test">    
<p class="img"><img  src="/static/imghwm/default1.png"  data-src="19.jpg"  class="lazy"   / alt="CSS basic tutorial: CSS image and text mixing, image signature, multi-image splicing and image special effects examples" ></p>    
<p class="img"><img  src="/static/imghwm/default1.png"  data-src="20.jpg"  class="lazy"   / alt="CSS basic tutorial: CSS image and text mixing, image signature, multi-image splicing and image special effects examples" ></p>    
<p class="img"><img  src="/static/imghwm/default1.png"  data-src="21.jpg"  class="lazy"   / alt="CSS basic tutorial: CSS image and text mixing, image signature, multi-image splicing and image special effects examples" ></p>    
</p>    
</p>    
</body>    
</html>


Rendering:

## Introducing the new style attributes of CSS3: box-shadow (border shadow) and transform (rotation effect). When I was learning CSS, I learned a lot of style attributes of the box model, and combining them will produce good results.

CSS basic tutorial: CSS image and text mixing, image signature, multi-image splicing and image special effects examples Take a detailed look at: CSSbo

.shadow property and CSStransform property

.() Border shadow property: box-shad. Set the shadow of the element. In fact, you can add it without a border. Shadow. Grammar

.box-shadow:apbpcp#xxxxx

.box-shadow:apbpcprgb(,,,.

.apx represents horizontal movement; bpx represents vertical movement ; cpx represents the blur distance of the shadow; the last one is the color

. () Rotation effect attribute: transfo
. Set the rotation of the element and apply D or D transformation to the element. This attribute allows us to rotate the element. Scale, move or tilt
.transform:rotate (angle unit is deg) Define D rotation and specify the angle in the parameter, angle represents the angle

<!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>    
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />    
<title>CSS布局之图片特效</title>    
<style type="text/css">    
body {    
margin:30px;    
background-color:#CCCCCC;    
}    
p.polaroid {    
width:294px;    
padding:10px;    
margin:10px;    
border:1px solid #BFBFBF;    
background-color:#FFFFFF;    
box-shadow:10px 10px 10px #999999;/*图片阴影的设置*/
}    
p.rotate_left {    
float:left;    
transform:rotate(8deg);/*图片向右倾倒*/
}    
p.rotate_right {    
float:left;    
transform:rotate(-8deg);/*图片向左倾倒*/
}    
</style>    
</head>    
<body>    
<p class="polaroid rotate_left">    
<img src="/static/imghwm/default1.png"  data-src="http://www.w3school.com.cn//i/ballade_dream.jpg"  class="lazy"   alt="郁金香"    style="max-width:90%"  style="max-width:90%" />    
<p class="caption">上海鲜花港的郁金香,花名:Ballade Dream。</p>    
</p>    
<p class="polaroid rotate_right">    
<img src="/static/imghwm/default1.png"  data-src="http://www.w3school.com.cn//i/china_pavilion.jpg"  class="lazy"   alt="世博中国馆"    style="max-width:90%"  style="max-width:90%" />    
<p class="caption">2010年上海世博会,中国馆。</p>    
</p>    
</body>    
</html>



Rendering:




The above is the detailed content of CSS basic tutorial: CSS image and text mixing, image signature, multi-image splicing and image special effects examples. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Demystifying Screen Readers: Accessible Forms & Best PracticesDemystifying Screen Readers: Accessible Forms & Best PracticesMar 08, 2025 am 09:45 AM

This is the 3rd post in a small series we did on form accessibility. If you missed the second post, check out "Managing User Focus with :focus-visible". In

Adding Box Shadows to WordPress Blocks and ElementsAdding Box Shadows to WordPress Blocks and ElementsMar 09, 2025 pm 12:53 PM

The CSS box-shadow and outline properties gained theme.json support in WordPress 6.1. Let's look at a few examples of how it works in real themes, and what options we have to apply these styles to WordPress blocks and elements.

Create a JavaScript Contact Form With the Smart Forms FrameworkCreate a JavaScript Contact Form With the Smart Forms FrameworkMar 07, 2025 am 11:33 AM

This tutorial demonstrates creating professional-looking JavaScript forms using the Smart Forms framework (note: no longer available). While the framework itself is unavailable, the principles and techniques remain relevant for other form builders.

Comparing the 5 Best PHP Form Builders (And 3 Free Scripts)Comparing the 5 Best PHP Form Builders (And 3 Free Scripts)Mar 04, 2025 am 10:22 AM

This article explores the top PHP form builder scripts available on Envato Market, comparing their features, flexibility, and design. Before diving into specific options, let's understand what a PHP form builder is and why you'd use one. A PHP form

Working With GraphQL CachingWorking With GraphQL CachingMar 19, 2025 am 09:36 AM

If you’ve recently started working with GraphQL, or reviewed its pros and cons, you’ve no doubt heard things like “GraphQL doesn’t support caching” or

Making Your First Custom Svelte TransitionMaking Your First Custom Svelte TransitionMar 15, 2025 am 11:08 AM

The Svelte transition API provides a way to animate components when they enter or leave the document, including custom Svelte transitions.

Show, Don't TellShow, Don't TellMar 16, 2025 am 11:49 AM

How much time do you spend designing the content presentation for your websites? When you write a new blog post or create a new page, are you thinking about

Classy and Cool Custom CSS Scrollbars: A ShowcaseClassy and Cool Custom CSS Scrollbars: A ShowcaseMar 10, 2025 am 11:37 AM

In this article we will be diving into the world of scrollbars. I know, it doesn’t sound too glamorous, but trust me, a well-designed page goes hand-in-hand

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version