コリスコリス


Top

Category

Contact

About


[CSS]



 -CSS



43

123









Post on:201182


sponsors

ロゴやアイコンを素早く形にしよう!ここまで進化したIllustratorの生成AI機能 2024年7月17日水曜日 開催 20時から21時ロゴやアイコンを素早く形にしよう!ここまで進化したIllustratorの生成AI機能 2024年7月17日水曜日 開催 20時から21時


Photoshop使CSS3

デモのキャプチャ
CSS3 vs. Photoshop: Rounded Corners and Box Shadows

[ad#ad-2]




 -box-shadow

 -border-radius



 -box-shadow


HTMLsection使div

デモのキャプチャデモのキャプチャ

HTML

<section class="box dropshadow"></section>

CSS

.dropshadow{
    background-image:-moz-linear-gradient(top, #F3F4F5, #C8C9CA);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#F3F4F5), to(#C8C9CA), color-stop(1,#C8C9CA));
 
    border:2px solid #F2F2F2;
 
    box-shadow: 10px 10px 10px rgba(0,0,0,0.25);
    -moz-box-shadow: 10px 10px 10px rgba(0,0,0,0.25);
    -webkit-box-shadow: 10px 10px 10px rgba(0,0,0,0.25);
}

デモのキャプチャデモのキャプチャ

HTML

<section class="box innershadow"></section>

CSS

.innershadow{
    background-image:-moz-linear-gradient(top, #E2E2E2, #CCCCCC);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#E2E2E2), to(#CCCCCC), color-stop(1,#CCCCCC));
 
    border:2px solid #FEFEFE;
 
    box-shadow: inset 5px 5px 5px rgba(0,0,0,0.25);
    -moz-box-shadow: inset 5px 5px 5px rgba(0,0,0,0.25);
    -webkit-box-shadow: inset 5px 5px 5px rgba(0,0,0,0.25);
}

デモのキャプチャデモのキャプチャ

HTML

<section class="box intenseshadow"></section>

CSS

.intenseshadow{
    background-color:#FFF;
    border:1px solid #F00;
 
    box-shadow: 10px 10px 0px #F00;
    -moz-box-shadow: 10px 10px 0px #F00;
    -webkit-box-shadow: 10px 10px 0px #F00;
}

デモのキャプチャデモのキャプチャ

HTML

<section class="box bevel"></section>

CSS

.bevel{
    background-color:#CCC;
 
    box-shadow: 10px 10px 0px #F00;
    -moz-box-shadow:inset 0px 0px 120px rgba(0,0,0,.60);
    -webkit-box-shadow: 10px 10px 0px #F00;
}

 -border-radius


,box使class

デモのキャプチャデモのキャプチャ

HTML

<section class="box fourcorners"></section>

CSS

.box{
 background-image:-moz-linear-gradient(top, #FAD502, #E89502);
 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FAD502), to(#E89502), color-stop(1,#E89502));
}

.fourcorners{
 -moz-border-radius: 20px;
 -webkit-border-radius: 20px;
 -khtml-border-radius: 20px; 
 border-radius: 20px;
}

デモのキャプチャデモのキャプチャ

HTML

<section class="box topleft bottomright"></section>

CSS

.box{
 background-image:-moz-linear-gradient(top, #FAD502, #E89502);
 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FAD502), to(#E89502), color-stop(1,#E89502));
}

.topleft{
 -moz-border-radius-topleft: 20px;
 -webkit-border-top-left-radius: 20px;
 -khtml-border-radius-topleft: 20px; 
 border-top-left-radius: 20px;
}

.bottomleft{
 -moz-border-radius-bottomleft: 20px;
 -webkit-border-bottom-left-radius: 20px;
 -khtml-border-radius-bottomleft: 20px; 
 border-bottom-left-radius: 20px;
}

デモのキャプチャデモのキャプチャ

HTML

<section class="box topright bottomleft"></section>

CSS

.box{
 background-image:-moz-linear-gradient(top, #FAD502, #E89502);
 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FAD502), to(#E89502), color-stop(1,#E89502));
}

.topright{
 -moz-border-radius-topright: 20px;
 -webkit-border-top-right-radius: 20px;
 -khtml-border-radius-topright: 20px; 
 border-top-right-radius: 20px;
}

.bottomleft{
 -moz-border-radius-bottomleft: 20px;
 -webkit-border-bottom-left-radius: 20px;
 -khtml-border-radius-bottomleft: 20px; 
 border-bottom-left-radius: 20px;
}

デモのキャプチャデモのキャプチャ

HTML

<section class="box asymmetrical1"></section>

CSS

.box{
 background-image:-moz-linear-gradient(top, #FAD502, #E89502);
 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FAD502), to(#E89502), color-stop(1,#E89502));
}

.asymmetrical1{ 
 -webkit-border-top-left-radius: 160px;
 -khtml-border-radius-topleft: 160px; 
 -moz-border-radius-topleft: 160px;
 border-top-left-radius: 160px;
 
 -webkit-border-top-right-radius: 20px;
 -khtml-border-radius-topright: 20px;
 -moz-border-radius-topright: 20px;
 border-top-right-radius: 20px;

 -webkit-border-bottom-left-radius: 10px;
 -khtml-border-radius-bottomleft: 10px;
 -moz-border-radius-bottomleft: 10px;
 border-bottom-left-radius: 10px;
 
 -webkit-border-bottom-right-radius: 0px;
 -khtml-border-radius-bottomright: 0px;
 -moz-border-radius-bottomright: 0px;
 border-bottom-right-radius: 0px;
}

デモのキャプチャデモのキャプチャ

HTML

<section class="box asymmetrical2"></section>

CSS

.box{
 background-image:-moz-linear-gradient(top, #FAD502, #E89502);
 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FAD502), to(#E89502), color-stop(1,#E89502));
}

.asymmetrical2{
 -webkit-border-top-left-radius: 0px;
 -khtml-border-radius-topleft: 0px; 
 -moz-border-radius-topleft: 0px;
 border-top-left-radius: 0px;
 
 -webkit-border-top-right-radius: 90px;
 -khtml-border-radius-topright: 90px;
 -moz-border-radius-topright: 90px;
 border-top-right-radius: 90px;

 -webkit-border-bottom-left-radius: 0px;
 -khtml-border-radius-bottomleft: 0px;
 -moz-border-radius-bottomleft: 0px;
 border-bottom-left-radius: 0px;
 
 -webkit-border-bottom-right-radius: 90px;
 -khtml-border-radius-bottomright: 90px;
 -moz-border-radius-bottomright: 90px;
 border-bottom-right-radius: 90px;
}

デモのキャプチャデモのキャプチャ

HTML

<section class="circle"></section>

CSS

.circle{
 width:170px;
 height:170px;
 
 padding:15px; 
 font-family:Arial, Helvetica, sans-serif; 
 color:#FFF; 
 font-size:12px; 
 font-weight:bold;
 float:left;
 
 background-image:-moz-linear-gradient(top, #FAD502, #E89502);
 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FAD502), to(#E89502), color-stop(1,#E89502));
 
  
 -webkit-border-top-left-radius: 100px;
 -khtml-border-radius-topleft: 100px; 
 -moz-border-radius-topleft: 100px;
 border-top-left-radius: 100px;
 
 -webkit-border-top-right-radius: 100px;
 -khtml-border-radius-topright: 100px;
 -moz-border-radius-topright: 100px;
 border-top-right-radius: 100px;

 -webkit-border-bottom-left-radius: 100px;
 -khtml-border-radius-bottomleft: 100px;
 -moz-border-radius-bottomleft: 100px;
 border-bottom-left-radius: 100px;
 
 -webkit-border-bottom-right-radius: 100px;
 -khtml-border-radius-bottomright: 100px;
 -moz-border-radius-bottomright: 100px;
 border-bottom-right-radius: 100px; 
}


Firefox, Safari, Chrome

[ad#ad-2]



デモのキャプチャデモのキャプチャ
CSS3 vs. Photoshop: Rounded Corners and Box Shadows



sponsors



Related Posts












43

123









top of page






ワードプレステンプレートワードプレステンプレート

Sponsors



WordPressテーマTCDWordPressテーマTCD
WordPressTCD

TCDの有料の国産テーマファイル「Rebirth」が無料でダウンロードTCDの有料の国産テーマファイル「Rebirth」が無料でダウンロード
有料フォントが限定特価有料フォントが限定特価
無料のデザインリソース無料のデザインリソース



Eagle コリス限定クーポン配布中Eagle コリス限定クーポン配布中

Kindle Unlimited 3ヵ月がなんと0円Kindle Unlimited 3ヵ月がなんと0円
7/17


広告掲載募集中広告掲載募集中



coliss

Recnet Entry


 
CMSmicroCMSNext.js使Web -Web

Amazon2024 

CSSclassJavaScript -Classnames

Affinity使 Win, Mac, iPadDesignerPhotoPublisher6使

Kindle1WebKindle

 ninaSchoolgirl

Bartender macOS -Ice

Kindle Web55


Pickup Entry



2024707 -



 





調





2024Peach Fuzz



VS CodeHTMLCSSJavaScript便

HTML

5CSS Grid使

CSS Flexbox

CSS Flexbox 使

CSS Flexbox使

CSS

2024CSS

2024CSS

Google200+

Font Awesome 使便

Photoshop便

PhotoshopCC 2021

UI/UXAdobe XD便

2023 -使

10



WordPress

Photoshop -

Photoshop



3

西

 使

使


Recommend



本の表紙本の表紙
Adobe AI

本の表紙本の表紙
 SNS


top of page




Category



 -調

 -

 -

 -

 -

 -

 -CSS

 -JavaScript

 - 

 -

 -

SEO

WordPress

WordPress


Freebies

 







 -Internet Explorer

 -Firefox

 -Opera

 -Safari

 -Chrome



Life

Digress

Sitemap


Blog Info



follow me on Twitter

subscribe to my RSS

Powered by WordPress

 
Cookie使
 


©2024 coliss