IT

更新内容

mkvmerge: when splitting, the placeholder %c can be used in the
destination file name. It’ll be replaced ...

IT

更新内容

#16055 BLD: add i686 for 1.18 builds
#16090 BUG: random: Generator.integers(2**32) always returned 0.
# ...

IT

操作方法
1.Internet Explorer 11で互換表示を有効にしたいサイトを開きます。
2.「ツール」->「互換表示設定」をクリックします。
3.「追加するWebサイト」項目にURLを表示します ...

IT

サンプルコード

package mainimport ( "fmt")func main() {//配列 var value = int{{1, 2}, {3, 4}, {5, 6}} for i, v := range val ...

IT

1.font-sizeでボタンのサイズを指定する
サンプルコード
.button1 {font-size: 10px;}
.button2 {font-size: 12px;}
.button3 {fo ...

IT

関数記法
rgb(red, green, blue)/* 整数値 */
rgb( 100%, 0%, 30% );/* 割合 */
サンプルコード

<style>#p1 {background ...

IT

box-shadow
要素のフレームの周囲にシャドウ効果を追加する

サンプルコード

<style> div{width:120px;height:50px;background-color:yel ...

IT

書式

opacity: value|inherit;

IE向けの指定

filter:alpha(opacity=50)

Firefox向けの指定

filter:Alpha(o ...

IT

border-image
指定された要素の周りに画像を描く

指定可能のプロパティ
border-image-source, border-image-slice, border-image-width, b ...

IT

border-radius プロパティ
要素の境界の外側の角を丸めます。

サンプルコード

<style> div{border:3px solid #a1a1a1;padding:5px 20px ...

IT

書式
a:after {
content: ” (” attr(href) “)”;
}

サンプルコード

<style>a:afte ...

IT

書式
1.中央揃え
h1 {text-align:center;}
2.右寄せ
p.date {text-align:right;}
3.両端揃え
p.main {text-align: ...

IT

書式
1.テキストに上線を引く
h1 {text-decoration:overline;}

2.テキストに取り消し線を引く
h2 {text-decoration:line-through;} ...

IT

1.大文字に変換
p.uppercase {
text-transform:uppercase;
}

2.1文字目だけ大文字
.text:first-letter{
text-tra ...

IT

1.書式
fsutil file createnew ファイル名 サイズ(バイト)

2.ファイルサイズ
1KB 1,024 byte
1MB 1,048,576 byte
1GB 1,073 ...

IT

例1
Str = Regex.Replace(Str, “or”, “”, RegexOptions.IgnoreCase)

例2
(?i)^{3}$ ...

IT

サンプルコード

var http = require("http");function onRequest(request, response) { response.writeHead(200, {"Content-Type" ...

IT

サンプルコード
String regex = “{5,8}c”;
Xeger generator = new Xeger(regex);
String result = generato ...