HTML中使图片居中显示

注:imageId为图片id


class Person{
      constructor(name,age){
          this.name = name;
          this.age = age;
      }
      get message()
      {
          return "name:"+this.name+",age:"+this.age
      }
  }
  var me = new Person("zt",23);
  console.log(me.message);

http://www.xakyz.com/

你可能感兴趣的:(HTML中使图片居中显示)