- 相關(guān)推薦
如何設(shè)置html字體
HTML“超文本”就是指頁面內(nèi)可以包含圖片、鏈接,甚至音樂、程序等非文字元素。那么,html字體怎么設(shè)置?下面百分網(wǎng)小編帶大家一起來看看詳細(xì)內(nèi)容,希望對大家有所幫助!
如何設(shè)置html字體
設(shè)置字體
html
body
A heading
A paragraph
/body
/html
設(shè)置文字尺寸
html
body
A heading
A paragraph
/body
/html
設(shè)置字體顏色
html
body
A heading
A paragraph
/body
/html
設(shè)置文字的字體、字體尺寸、字體顏色
html
body
hello world
/body
/html
如何設(shè)置Java對話框字體
兩種辦法可以解決:
一、使用簡單的HTML語法可以控制文字的大。
二、(推薦!)先看參數(shù)
JOptionPane.showMessageDialog(Component, Object, String, int);第二個參數(shù)為Object,我們可以用一個JLabel來替代以前的String,給JLabel一個Font就OK了。
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.event.ActionEvent;
public class Test {
JFrame frame;
JButton button;
Font font;
public Test(){
font = new Font("宋體",0,12);
UIManager.put("Button.font",font);
UIManager.put("Label.font",font);
frame = new JFrame("Test");
button = new JButton("彈出");
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent actionEvent) {
JLabel l = new JLabel("用戶名或密碼錯誤 請重新輸入");
JOptionPane.showMessageDialog(frame,l,"錯誤",JOptionPane.ERROR_MESSAGE);
}
});
frame.getContentPane().add(button);
frame.setSize(300, 200);
frame.setVisible(true);
}
public static void main(String[] args) {
new Test();
}
}
【如何設(shè)置html字體】相關(guān)文章:
HTML5字體設(shè)置的方法03-29
eclipse如何設(shè)置字體大小09-12
如何設(shè)置windows 7操作系統(tǒng)的字體圖解03-30
word字體底紋顏色怎么設(shè)置11-28
如何設(shè)置Photoshop11-30
如何設(shè)置dns07-22
word如何修改字體的大小顏色12-05