2022年5月23日 星期一

dreamweaver 框線

 


--------------style -------------


<style type="text/css">


div {

width: 80%;

line-height: 80px;

text-align: center;

margin: 50px auto;

font-size: 3em;

font-family: century gothic;

border-width: 5px;

border-color: #365F96;

background-color: #eee;

}

div.solid {

border-style: solid;

}

div.dashed {

border-style: dashed;

}

div.dotted {

border-style: dotted;

}

div.double {

border-style: double;

}

div.outset {

border-style: outset;

}

div.inset {

border-style: inset;

}

div.groove {

border-style: groove;

}

div.ridge {

border-style: ridge;

}

</style>

-----------------HTML------------------

<div class="solid">solid</div>

<div class="dashed">dashed</div>

<div class="dotted">dotted</div>

<div class="double">double</div>

<div class="outset">outset</div>

<div class="inset">inset</div>

<div class="groove">groove</div>

<div class="ridge">ridge</div>

沒有留言:

張貼留言

Raspberry Pi 做 PostgreSQL(Timescale) 讓真實溫度資料寫入到PostgreSQL - PostgreSQL有GUI操作畫面

此次範例Raspberry Pi 4 先下載 樹梅派系統 軟體 先確定OK在做系統寫入 先更新系統 sudo apt update sudo apt upgrade -y 因為這次是要有GUI介面的(所以需要安裝Docker) Step 1 安裝 Docker sudo apt ...