color:#FF0000
text-decoration:underline
}这个是设置超链接字体颜色,并且去掉下划线。
a:visited {
color:#00FF00
text-decoration:none
}
这个是已经访问的链接之后的颜色,颜色你可以随便设置。
如何设置html字体
设置字体
html
body
A heading
A paragraph
/body
/html
设置文字尺寸
html
body
A heading
A paragraph
/body
/html
设置字体颜色
html
body
A heading
A paragraph
/body
/html
设置文字的字体、字体尺寸、字体颜色
html
body
hello world
/body
/html
如何设置Java对话框字体
两种办法可以解决:
一、使用简单的HTML语法可以控制文字的大小:
二、(推荐!)先看参数
JOptionPane.showMessageDialog(Component, Object, String, int)第二个参数为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()
}
}