我正在编写一个GWT应用程序,我需要在标题中显示一个带有五个单词的标题,例如:" Academia de Baile Nuria Villamuelas"。 (好吧,我想添加一个带有SubHeader的Header,但我还没有找到如何用GWT Material Design做到这一点)。 我不知道自己做错了什么,但是当我使用不同的屏幕尺寸进行测试时,文字会被截断。
我想有以下行为: enter image description here
但我有这个:enter image description here 我的测试代码是:
function set(){
$players = array('good' =>
array ('Angels', 'Guardians'),
'bad'=>
array('Devils', 'Imps'));
return $players['bad'][1];
//If I try to access Key element number 2 and above since all I have are elements 0(Devils) and 1(Imps) please show me an error.
if (condition) {
# code...
}
谢谢。 纽丽